File size: 474 Bytes
fcfe221 6f4b39f fcfe221 4210764 2b070dd fcfe221 fcfc6d3 4210764 6f4b39f fcfe221 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Hugging Face kernel manifest (new huggingface/kernels schema).
# Pure-Python kernel (CUTLASS Python DSL, JIT-compiled on the GPU at runtime):
# no compiled sources -> declared with [torch-noarch]. CUDA-only (CUTLASS is NVIDIA).
[general]
name = "my-softmax-function"
version = 1
edition = 5
license = "Apache-2.0"
backends = ["cuda"]
[general.cuda]
# nvidia-cutlass-dsl 4.3.0 requires CUDA >= 12.8.
minver = "12.8"
python-depends = ["nvidia-cutlass-dsl"]
[torch-noarch]
|