Skip to content

Commit f066c9c

Browse files
Add Blackwell support (#265)
* Add Blackwell support * Update CHANGELOG
1 parent 2a355de commit f066c9c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
### Added
1212

13+
- Added Blackwell support
14+
1315
### Changed
1416

1517
### Deprecated
@@ -30,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3032
- Improved performance of connectivity calculation. Refactor of Least squares
3133
gradients
3234
- Added Incompressible Navier Stokes PDE as a special formulation
33-
- Added ability for `make_nodes` function to return a dict
35+
- Added ability for `make_nodes` function to return a dict
3436

3537
### Changed
3638

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ def cuda_extension():
3333
nvcc_args.append("-gencode=arch=compute_86,code=sm_86")
3434
if cuda_version >= 12:
3535
nvcc_args.append("-gencode=arch=compute_90,code=sm_90")
36+
if cuda_version >= 12.8:
37+
nvcc_args.append("-gencode=arch=compute_100,code=sm_100")
3638

3739
nvcc_args.append("-t=0") # Enable multi-threaded builds
3840
# nvcc_args.append("--time=output.txt")

0 commit comments

Comments
 (0)