From 9934026da53b5a71409e364894b574d3d5de2a96 Mon Sep 17 00:00:00 2001 From: WolframRhodium Date: Thu, 25 Apr 2024 14:02:49 +0800 Subject: [PATCH] .github/workflows/windows-ort.yml: update ort; update cuda to 12.4.1 --- .github/workflows/windows-ort.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/windows-ort.yml b/.github/workflows/windows-ort.yml index 0aafede..588e064 100644 --- a/.github/workflows/windows-ort.yml +++ b/.github/workflows/windows-ort.yml @@ -116,7 +116,7 @@ jobs: - name: Download ONNX Runtime Precompilation run: | - curl -s -o ortgpu.zip -LJO https://github.com/AmusementClub/onnxruntime/releases/download/orttraining_rc2-7983-g9001c69b84-240419-0832/onnxruntime-gpu-win64.zip + curl -s -o ortgpu.zip -LJO https://github.com/AmusementClub/onnxruntime/releases/download/orttraining_rc2-8036-geb41d57f21-240425-0428/onnxruntime-gpu-win64.zip unzip -q ortgpu.zip - name: Cache CUDA @@ -124,12 +124,12 @@ jobs: uses: actions/cache@v4 with: path: C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA - key: ${{ runner.os }}-cuda-12.4.0 + key: ${{ runner.os }}-cuda-12.4.1 - name: Setup CUDA if: steps.cache-cuda.outputs.cache-hit != 'true' run: | - curl -s -o cuda_installer.exe -L https://developer.download.nvidia.com/compute/cuda/12.4.0/network_installers/cuda_12.4.0_windows_network.exe + curl -s -o cuda_installer.exe -L https://developer.download.nvidia.com/compute/cuda/12.4.1/network_installers/cuda_12.4.1_windows_network.exe cuda_installer.exe -s nvcc_12.4 cudart_12.4 - name: Configure