File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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")
You can’t perform that action at this time.
0 commit comments