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
After running diskann::build_disk_index function, AddressSanitizer tool tells me "alloc-dealloc-mismatch (operator new vs operator delete [])".Code in scratch.cpp shows that SSDQueryScratch creates PQScratc by new operator with releasing it by delete[] operator(line 105, line 120). Is phenomenon normal or just some small code typos?
The text was updated successfully, but these errors were encountered:
Expected Behavior
SSDQueryScratch object deconstruct normally.
Actual Behavior
SSDQueryScratch object deconstruct abnormally.
Additional Details
After running diskann::build_disk_index function, AddressSanitizer tool tells me "alloc-dealloc-mismatch (operator new vs operator delete [])".Code in scratch.cpp shows that SSDQueryScratch creates PQScratc by new operator with releasing it by delete[] operator(line 105, line 120). Is phenomenon normal or just some small code typos?
The text was updated successfully, but these errors were encountered: