You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-8Lines changed: 19 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,18 +68,29 @@ pip install -e ".[dev]"
68
68
# Skip build isolation for faster rebuilds
69
69
pip install -e . --no-build-isolation -v
70
70
71
-
# Install without CUDA backend
72
-
pip install . --no-cuda
73
71
```
74
72
75
73
#### Available Build Options
76
74
77
-
| Option | Description | Default |
78
-
|--------|-------------|---------|
79
-
|`--no-cuda`| Build without CUDA backend | Enabled (build with CUDA) |
80
-
|`--cuda-archs=...`| CUDA architectures to build for | Windows: `80;89;120f`<br>Linux: `80;89;90a;100a;120f`|
81
-
|`--debug-build`| Build in debug mode with symbols | Disabled (Release) |
82
-
|`--lineinfo`| Enable NVCC line information for profiling | Disabled |
75
+
These options require using `setup.py` directly (not `pip install`):
76
+
77
+
| Option | Command | Description | Default |
78
+
|--------|---------|-------------|---------|
79
+
|`--no-cuda`|`python setup.py bdist_wheel --no-cuda`| Build without CUDA backend | Enabled (build with CUDA) |
80
+
|`--cuda-archs=...`|`python setup.py build_ext --cuda-archs="80;89"`| CUDA architectures to build for | Windows: `80;89;120f`<br>Linux: `80;89;90a;100f;120f`|
81
+
|`--debug-build`|`python setup.py build_ext --debug-build`| Build in debug mode with symbols | Disabled (Release) |
82
+
|`--lineinfo`|`python setup.py build_ext --lineinfo`| Enable NVCC line info for profiling | Disabled |
0 commit comments