tiagomonteiro0715 commited on
Commit ·
32b5efc
1
Parent(s): fcfc6d3
- build.toml +0 -9
build.toml
CHANGED
|
@@ -1,17 +1,8 @@
|
|
| 1 |
-
# Hugging Face kernel-builder manifest.
|
| 2 |
-
# Pure-Python kernel: written in the CUTLASS Python DSL and JIT-compiled on the
|
| 3 |
-
# GPU at runtime, so there are NO compiled C++/CUDA sources to build.
|
| 4 |
-
# CUTLASS targets NVIDIA only, so the sole backend is cuda.
|
| 5 |
[general]
|
| 6 |
name = "my_softmax_function"
|
| 7 |
backends = ["cuda"]
|
| 8 |
|
| 9 |
-
# nvidia-cutlass-dsl is a CUDA-backend-specific python dep, so it goes in the
|
| 10 |
-
# nested [general.cuda] table, NOT the top-level python-depends (which only
|
| 11 |
-
# resolves "general" deps like einops).
|
| 12 |
[general.cuda]
|
| 13 |
-
# nvidia-cutlass-dsl 4.3.0 requires CUDA >= 12.8; this drops the older-CUDA
|
| 14 |
-
# build variants where the wheel is marked broken.
|
| 15 |
minver = "12.8"
|
| 16 |
python-depends = ["nvidia-cutlass-dsl"]
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
[general]
|
| 2 |
name = "my_softmax_function"
|
| 3 |
backends = ["cuda"]
|
| 4 |
|
|
|
|
|
|
|
|
|
|
| 5 |
[general.cuda]
|
|
|
|
|
|
|
| 6 |
minver = "12.8"
|
| 7 |
python-depends = ["nvidia-cutlass-dsl"]
|
| 8 |
|