Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/Draft-Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ jobs:
# Newest and oldest CUDA 13.x we support
- cuda: "13.2.0"
cuda_arch: "75"
hostcxx: "Visual Studio 17 2022"
os: windows-2022
hostcxx: "Visual Studio 18 2026"
os: windows-2025
- cuda: "13.0.0"
cuda_arch: "75"
hostcxx: "Visual Studio 17 2022"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Windows-Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
# CUDA 13
- cuda: "13.2.0"
cuda_arch: "75"
hostcxx: "Visual Studio 17 2022"
os: windows-2022
hostcxx: "Visual Studio 18 2026"
os: windows-2025
- cuda: "13.0.0"
cuda_arch: "75"
hostcxx: "Visual Studio 17 2022"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
# CUDA 13
- cuda: "13.2.0"
cuda_arch: "75"
hostcxx: "Visual Studio 17 2022"
os: windows-2022
hostcxx: "Visual Studio 18 2026"
os: windows-2025
- cuda: "13.0.0"
cuda_arch: "75"
hostcxx: "Visual Studio 17 2022"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@ Building FLAME GPU has the following requirements. There are also optional depen
+ For native Windows builds, CUDA `12.0-12.3` may work for some but not all parts of FLAME GPU due to c++20 compilation issues and MSVC support.
+ A [Compute Capability](https://developer.nvidia.com/cuda-gpus) `>= 5.0` (CUDA 12.x) or `>= 7.5` (CUDA 13.x) NVIDIA GPU is required for execution.
+ C++20 capable C++ compiler (host), compatible with the installed CUDA version
+ [Microsoft Visual Studio 2022](https://visualstudio.microsoft.com/) (Windows)
+ [Microsoft Visual Studio 2022/2026](https://visualstudio.microsoft.com/) (Windows)
+ *Note:* Visual Studio must be installed before the CUDA toolkit is installed. See the [CUDA installation guide for Windows](https://docs.nvidia.com/cuda/cuda-installation-guide-microsoft-windows/index.html) for more information.
+ *Note:* Windows 11 SDK (10.0.22000.0) component is required within the Visual Studio (in latest versions this is default for C++ Desktop Development workloads even even on Windows 10). Windows 10 *must* be updated to build 19045 (22H2) or later to support this at runtime.
+ *Note:* Visual Studio 2026 requires CUDA >= 13.2
+ [make](https://www.gnu.org/software/make/) and [GCC](https://gcc.gnu.org/) `>= 10` (Linux)
+ [git](https://git-scm.com/)

Expand Down
Loading