You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling with cmake --preset cpu-test the reported memory usage from each module is not accurate.
For example, some modules are reported to use no memory.
Other modules report a memory leak, but I'm skeptical if this is the case.
Using an overload for global new and delete does not catch all allocations, and reports false leaks. Using mallinfo() reports less leaks, but the information is not fine-grained enough.
The text was updated successfully, but these errors were encountered:
When compiling with
cmake --preset cpu-test
the reported memory usage from each module is not accurate.For example, some modules are reported to use no memory.
Other modules report a memory leak, but I'm skeptical if this is the case.
Using an overload for global
new
anddelete
does not catch all allocations, and reports false leaks. Usingmallinfo()
reports less leaks, but the information is not fine-grained enough.The text was updated successfully, but these errors were encountered: