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