rapidsai / rmm

RAPIDS Memory Manager
https://docs.rapids.ai/api/rmm/stable/
Apache License 2.0
446 stars 188 forks source link

Avoid accessing statistics_resource_adaptor stack top if it is empty #1588

Closed harrism closed 1 week ago

harrism commented 2 weeks ago

Description

Fixes #1587

Note: the only time UB could occur was in the constructor, because the ctor pushes a pair onto the stack and pop_counters() does not allow the last pair to be popped. Therefore, we only need to check for empty in push_counters().

Checklist

harrism commented 1 week ago

/merge