diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index ef196b1a..172761eb 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -11,7 +11,7 @@ jobs:
release:
name: Build Publish Library - Linux-x86_64
- runs-on: public-blitzar-T4-gpu-vm
+ runs-on: nvidia-nc4as-t4
timeout-minutes: 600
needs: [test-check-lint]
environment: deploy #!! DO NOT CHANGE THIS LINE !! #
@@ -23,10 +23,15 @@ jobs:
- run: git config --global --add safe.directory $(realpath .)
+ - name: Install nix
+ uses: cachix/install-nix-action@v31
+ with:
+ install_options: --no-daemon
+
- name: Semantic release
run: |
- nix develop --command npm install semantic-release
- TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --command npx semantic-release
+ nix develop --extra-experimental-features "nix-command flakes" --command npm install semantic-release
+ TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --extra-experimental-features "nix-command flakes" --command npx semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
diff --git a/.github/workflows/test-check-lint.yml b/.github/workflows/test-check-lint.yml
index 0ef069c1..58d678bb 100644
--- a/.github/workflows/test-check-lint.yml
+++ b/.github/workflows/test-check-lint.yml
@@ -14,25 +14,45 @@ concurrency:
jobs:
format-code:
name: Check code
- runs-on: public-blitzar-T4-gpu-vm
+ runs-on: nvidia-nc4as-t4
timeout-minutes: 600
steps:
- name: Checkout code
uses: actions/checkout@v3
+
+ - name: Install nix
+ uses: cachix/install-nix-action@v31
+ with:
+ install_options: --no-daemon
- name: Run check
- run: nix develop --command ./tools/code_format/check_format.py check
+ run: nix develop --extra-experimental-features "nix-command flakes" --command ./tools/code_format/check_format.py check
test-cpp:
name: C++ code
- runs-on: public-blitzar-T4-gpu-vm
+ runs-on: nvidia-nc4as-t4
timeout-minutes: 600
steps:
+
- name: Checkout Code
uses: actions/checkout@v3
+ - name: Check nvidia version
+ run: nvidia-smi
+
+ - name: Install nix
+ uses: cachix/install-nix-action@v31
+ with:
+ install_options: --no-daemon
+
+ - name: Enter nix env
+ run: nix develop --extra-experimental-features "nix-command flakes"
+
+ - name: Check nvidia version
+ run: nvidia-smi
+
- name: Run cpp tests
- run: TEST_TMPDIR=$HOME/.bazel_test nix develop --command bazel test //...
+ run: TEST_TMPDIR=$HOME/.bazel_test bazel test //...
# Note: There are some steps we need to our
# custom nix derivation from https://github.com/spaceandtimefdn/blitzar/pull/96
@@ -42,7 +62,7 @@ jobs:
#
# test-cpp-compute-sanitizer:
# name: C++ code with compute sanitizer
- # runs-on: public-blitzar-T4-gpu-vm
+ # runs-on: nvidia-nc4as-t4
# timeout-minutes: 600
# steps:
# - name: Checkout Code
@@ -63,35 +83,50 @@ jobs:
test-cpp-opt:
name: C++ code with optimizations
- runs-on: public-blitzar-T4-gpu-vm
+ runs-on: nvidia-nc4as-t4
timeout-minutes: 600
steps:
- name: Checkout Code
uses: actions/checkout@v3
+
+ - name: Install nix
+ uses: cachix/install-nix-action@v31
+ with:
+ install_options: --no-daemon
- name: Run cpp tests with optimization flags on
- run: TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --command bazel test --jobs=1 -c opt //...
+ run: TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --extra-experimental-features "nix-command flakes" --command bazel test --jobs=1 -c opt //...
test-cpp-asan:
name: C++ code with address sanitizer
- runs-on: public-blitzar-T4-gpu-vm
+ runs-on: nvidia-nc4as-t4
timeout-minutes: 600
steps:
- name: Checkout Code
uses: actions/checkout@v3
+ - name: Install nix
+ uses: cachix/install-nix-action@v31
+ with:
+ install_options: --no-daemon
+
- name: Run cpp-asan tests
- run: TEST_TMPDIR=$HOME/.bazel_test_asan nix develop --command bazel test --config=asan //sxt/...
+ run: TEST_TMPDIR=$HOME/.bazel_test_asan nix develop --extra-experimental-features "nix-command flakes" --command bazel test --config=asan //sxt/...
test-rust:
name: Rust Sys Crate
- runs-on: public-blitzar-T4-gpu-vm
+ runs-on: nvidia-nc4as-t4
timeout-minutes: 600
steps:
- name: Checkout Code
uses: actions/checkout@v3
+ - name: Install nix
+ uses: cachix/install-nix-action@v31
+ with:
+ install_options: --no-daemon
+
- name: Run rust tests
run: |
- TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --command cargo test --manifest-path rust/blitzar-sys/Cargo.toml
- TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --command cargo test --manifest-path rust/tests/Cargo.toml
+ TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --extra-experimental-features "nix-command flakes" --command cargo test --manifest-path rust/blitzar-sys/Cargo.toml
+ TEST_TMPDIR=$HOME/.bazel_test_opt nix develop --extra-experimental-features "nix-command flakes" --command cargo test --manifest-path rust/tests/Cargo.toml
diff --git a/README.md b/README.md
index 994783e8..eeec0869 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@
-
+
@@ -166,7 +166,7 @@ See the [example](./example) folder for some examples.
Prerequisites:
* `x86_64` Linux instance.
* Nix with flake support (check out [The Determinate Nix Installer](https://github.com/DeterminateSystems/nix-installer)).
-* Nvidia GPU capable of running CUDA 12.6 code.
+* Nvidia GPU capable of running CUDA 12.8 code.
From your terminal, run the following command in the root of the source directory to set
up a build environment.
diff --git a/nix/cuda.nix b/nix/cuda.nix
index 00636290..beacc1a3 100644
--- a/nix/cuda.nix
+++ b/nix/cuda.nix
@@ -6,9 +6,9 @@
with pkgs;
pkgs.stdenvNoCC.mkDerivation {
name = "cudatoolkit";
- src = fetchurl {
- url = "https://developer.download.nvidia.com/compute/cuda/12.6.1/local_installers/cuda_12.6.1_560.35.03_linux.run";
- sha256 = "179fx44j0f6fm4m8afx5vhivv3ywyv7mv7shb7r2b5ji8drcxb3k";
+ src = fetchurl {
+ url = "https://developer.download.nvidia.com/compute/cuda/12.8.1/local_installers/cuda_12.8.1_570.124.06_linux.run";
+ sha256 = "15wpl4k2yl14i84kgglysdg0wbf99y8k3x1r541qsqdpyp56p3r2";
};
patches = [
# patch host_defines.h to work with libc++
diff --git a/rust/blitzar-sys/README.md b/rust/blitzar-sys/README.md
index 70a3490b..66fa8992 100644
--- a/rust/blitzar-sys/README.md
+++ b/rust/blitzar-sys/README.md
@@ -45,7 +45,7 @@
-
+