xref: /aosp_15_r20/external/pytorch/aten/src/ATen/mkl/Sparse.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 
3 #include <ATen/Config.h>
4 
5 // MKL Sparse is not currently supported on Windows
6 // See https://github.com/pytorch/pytorch/issues/97352
7 #if AT_MKL_ENABLED()
8 #define AT_USE_MKL_SPARSE() 1
9 #else
10 #define AT_USE_MKL_SPARSE() 0
11 #endif
12