You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/Draft-Release.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ defaults:
28
28
# + Wheel producing manylinux builds
29
29
# + CUDA 12.0 and 13.0, py 3.8-3.12, vis on/off, py only.
30
30
# + Wheel producing Windows builds
31
-
# + CUDA 12.0 and 13.0, py 3.8-3.12, vis on/off, py only.
31
+
# + CUDA 12.4 and 13.0, py 3.8-3.12, vis on/off, py only.
32
32
# + Draft github release workflow.
33
33
34
34
jobs:
@@ -194,12 +194,12 @@ jobs:
194
194
cuda_arch: "75"
195
195
hostcxx: "Visual Studio 17 2022"
196
196
os: windows-2025
197
-
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, but we have a workaround in place
197
+
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, and although we have a workaround in place 12.4+ is required for pyflamegpu in c++20.
# Oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, but we have a workaround in place
498
-
- cuda: "12.0.0"
497
+
# Oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, and is required for pyflamegpu as c++20 due to compiler/stdlib errors
Copy file name to clipboardExpand all lines: .github/workflows/Windows-Tests.yml
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,16 @@ jobs:
28
28
cuda_arch: "75"
29
29
hostcxx: "Visual Studio 17 2022"
30
30
os: windows-2025
31
-
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, but we have a workaround in place
31
+
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, and although we have a workaround in place 12.4+ is required for pyflamegpu in c++20.
32
32
- cuda: "12.9.1"
33
33
cuda_arch: "50"
34
34
hostcxx: "Visual Studio 17 2022"
35
35
os: windows-2025
36
+
- cuda: "12.4.0"
37
+
cuda_arch: "50"
38
+
hostcxx: "Visual Studio 17 2022"
39
+
os: windows-2022
40
+
# No python in this workflow, so can just include 12.0 in the matrix.
Copy file name to clipboardExpand all lines: .github/workflows/Windows.yml
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,12 +34,12 @@ jobs:
34
34
cuda_arch: "75"
35
35
hostcxx: "Visual Studio 17 2022"
36
36
os: windows-2025
37
-
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, but we have a workaround in place
37
+
# Newest and oldest CUDA 12.x we support. 12.4 is the oldest officially supported by MSVC >= 1940, and although we have a workaround in place 12.4+ is required for pyflamegpu in c++20.
38
38
- cuda: "12.9.1"
39
39
cuda_arch: "50"
40
40
hostcxx: "Visual Studio 17 2022"
41
41
os: windows-2025
42
-
- cuda: "12.0.0"
42
+
- cuda: "12.4.0"
43
43
cuda_arch: "50"
44
44
hostcxx: "Visual Studio 17 2022"
45
45
os: windows-2022
@@ -73,7 +73,19 @@ jobs:
73
73
- config:
74
74
name: "Beltsoff"
75
75
VISUALISATION: "ON"
76
-
76
+
include:
77
+
# Add an explicit CUDA 12.0 build for windows without Python
0 commit comments