Use noexcept CUDA_CALL check in destructor.

This commit is contained in:
Allison Vacanti
2021-02-16 12:00:04 -05:00
parent 55aa78ce17
commit f46dda0e81

View File

@@ -26,7 +26,7 @@ struct l2flush
{
if (m_l2_buffer)
{
NVBENCH_CUDA_CALL(cudaFree(m_l2_buffer));
NVBENCH_CUDA_CALL_NOEXCEPT(cudaFree(m_l2_buffer));
}
}