onnxruntime/onnxruntime/test/quantization
Changming Sun 9cb97ee507
Disable CPU EP's allocator's arena when address sanitizer is enabled (#19485)
### Description
Disable CPU EP's allocator's arena when address sanitizer is enabled,
because it masks problems. For example, the code in
onnxruntime/test/quantization/quantization_test.cc has a memory leak
problem: it allocated a buffer but didn't free it, but most memory leak
check tool cannot detect that because the buffer was from an arena and
the arena was finally freed.

### Motivation and Context
Provider better memory leak check coverage.
2024-02-12 09:39:49 -08:00
..
quantization_test.cc Disable CPU EP's allocator's arena when address sanitizer is enabled (#19485) 2024-02-12 09:39:49 -08:00