From 4bcc326d4190481ba8669813a09adfcb6c8e2e80 Mon Sep 17 00:00:00 2001 From: "Chase J. Shyu" Date: Wed, 1 Nov 2023 09:20:37 +0800 Subject: [PATCH] update cuda version --- .github/workflows/nvc-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nvc-build.yml b/.github/workflows/nvc-build.yml index 6cb306f..49c72cc 100644 --- a/.github/workflows/nvc-build.yml +++ b/.github/workflows/nvc-build.yml @@ -20,7 +20,7 @@ jobs: id: cuda-toolkit with: # Cuda version - cuda: 10.2 # optional, default is 12.2.0 + cuda: 10.2.89 # optional, default is 12.2.0 # Only installs specified subpackages, must be in the form of a JSON array. For example, if you only want to install nvcc and visual studio integration: ["nvcc", "visual_studio_integration"] double quotes required! Note that if you want to use this on Linux, 'network' method MUST be used. # sub-packages: # optional, default is [] # Only installs specified subpackages that do not have the cuda prefix, must be in the form of a JSON array. For example, if you only want to install libcublas and libcufft: ["libcublas", "libcufft"] double quotes required! Note that this only works with 'network' method on only on Linux.