xref: /aosp_15_r20/external/pytorch/aten/src/ATen/jit_macros.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 #include <ATen/cuda/CUDAConfig.h>
3 #include <string>
4 
5 // AT_USE_JITERATOR(), controls whether we jit some elementwise kernels
6 #define AT_USE_JITERATOR() true
7 #define jiterator_stringify(...) std::string(#__VA_ARGS__);
8