Skip to content

Commit 52178f7

Browse files
committed
New patch version with multi GPU support, closes #8
1 parent f1fd232 commit 52178f7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Install uv
20-
uses: astral-sh/setup-uv@v3
20+
uses: astral-sh/setup-uv@v6
2121

2222
- name: Get options
2323
run: uv run nvibrant/version.py >> $GITHUB_ENV
24-
shell: bash
2524

2625
- name: Compile
2726
run: uv run nvibrant/build.py

nvibrant/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const char* NVIDIA_DRIVER_VERSION = []() {
3131
}();
3232

3333
// Nth GPU index to allocate device handle
34-
const int NVIDIA_GPU = []() {
34+
const NvU32 NVIDIA_GPU = []() {
3535
if (const char* num = getenv("NVIDIA_GPU"))
3636
return atoi(num);
3737
return 0;

nvibrant/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
__version__ = "1.0.5"
2+
__version__ = "1.0.6"
33

44
if (__name__ == "__main__"):
55
print(f"GHA_VERSION={__version__}")

open-gpu

Submodule open-gpu updated 218 files

0 commit comments

Comments
 (0)