From 552bbdc43bb3fdc89add9d3f4b4a3c07f01d5bfb Mon Sep 17 00:00:00 2001 From: Alexey Kamenev Date: Thu, 4 Sep 2025 10:49:22 -0700 Subject: [PATCH 1/2] Add Blackwell support --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index b4ed79a7..e3811f80 100644 --- a/setup.py +++ b/setup.py @@ -33,6 +33,8 @@ def cuda_extension(): nvcc_args.append("-gencode=arch=compute_86,code=sm_86") if cuda_version >= 12: nvcc_args.append("-gencode=arch=compute_90,code=sm_90") + if cuda_version >= 12.8: + nvcc_args.append("-gencode=arch=compute_100,code=sm_100") nvcc_args.append("-t=0") # Enable multi-threaded builds # nvcc_args.append("--time=output.txt") From c296a45bec87f77d287523ba472619f9075639f2 Mon Sep 17 00:00:00 2001 From: Alexey Kamenev Date: Thu, 4 Sep 2025 10:51:12 -0700 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90a7842f..b2628973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Added Blackwell support + ### Changed ### Deprecated @@ -30,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved performance of connectivity calculation. Refactor of Least squares gradients - Added Incompressible Navier Stokes PDE as a special formulation -- Added ability for `make_nodes` function to return a dict +- Added ability for `make_nodes` function to return a dict ### Changed