Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
kernels-community
/
gemm
like
0
Follow
kernels-community
244
Kernels
hip
Model card
Files
Files and versions
xet
Community
Use this model
main
gemm
/
include
/
clangd_workaround.h
medmekk
HF Staff
Upload folder using huggingface_hub
92455fe
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
864 Bytes
#
define
HOST_CODE_BELOW \
extern
"C"
int printf(const char *fmt, ...); \
extern void operator delete[](void *ptr) _GLIBCXX_USE_NOEXCEPT; \
extern void *operator new[](__SIZE_TYPE__ size);
#
define
DEVICE_CODE_BELOW \
extern
"C"
__device__ int printf(const char *fmt, ...); \
extern __device__ void operator delete[](void *ptr) _GLIBCXX_USE_NOEXCEPT; \
extern __device__ void *operator new[](__SIZE_TYPE__ size);