/*! * \file tl/runtime/runtime.h * \brief Runtime functions. * */ #ifndef TVM_TL_RUNTIME_RUNTIME_H_ #define TVM_TL_RUNTIME_RUNTIME_H_ namespace tvm { namespace tl { #if (CUDA_MAJOR_VERSION >= 12) constexpr const char *tvm_tensormap_create_tiled = "__tvm_tensormap_create_tiled"; constexpr const char *tvm_tensormap_create_im2col = "__tvm_tensormap_create_im2col"; #endif // (CUDA_MAJOR_VERSION >= 12) } // namespace tl } // namespace tvm #endif // TVM_TL_RUNTIME_RUNTIME_H_