From 499efdb978ed24e217a0938d98f3615021b49ab4 Mon Sep 17 00:00:00 2001 From: MoFtZ Date: Fri, 7 Feb 2025 08:43:18 +1100 Subject: [PATCH 1/3] Bump Cuda versions. --- Src/ILGPU/Static/CudaVersions.xml | 51 +++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/Src/ILGPU/Static/CudaVersions.xml b/Src/ILGPU/Static/CudaVersions.xml index 2ac5b3801..4501d6e72 100644 --- a/Src/ILGPU/Static/CudaVersions.xml +++ b/Src/ILGPU/Static/CudaVersions.xml @@ -548,4 +548,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From f9cd32d5960d605bf83bce8f7348cb602d5e8c08 Mon Sep 17 00:00:00 2001 From: MoFtZ Date: Fri, 7 Feb 2025 08:43:19 +1100 Subject: [PATCH 2/3] Bump copyright year. --- LICENSE.txt | 2 +- README.md | 2 +- Src/ILGPU.Algorithms/Properties/ILGPU.Algorithms.nuspec.targets | 2 +- Src/ILGPU/Properties/ILGPU.nuspec.targets | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 2dd05e102..42aab30f0 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,7 +2,7 @@ ILGPU License ******************************************************************************** University of Illinois/NCSA Open Source License -Copyright (c) 2016-2024 ILGPU Project +Copyright (c) 2016-2025 ILGPU Project All rights reserved. Developed by: Marcel Koester (m4rs@m4rs.net) diff --git a/README.md b/README.md index 035388286..78902c133 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ ILGPU also provides Source Link support for a better debugging experience. Make ILGPU is licensed under the University of Illinois/NCSA Open Source License. Detailed license information can be found in LICENSE.txt. -Copyright (c) 2016-2024 ILGPU Project. All rights reserved. +Copyright (c) 2016-2025 ILGPU Project. All rights reserved. Originally developed by Marcel Koester. diff --git a/Src/ILGPU.Algorithms/Properties/ILGPU.Algorithms.nuspec.targets b/Src/ILGPU.Algorithms/Properties/ILGPU.Algorithms.nuspec.targets index fb8186090..554cb4504 100644 --- a/Src/ILGPU.Algorithms/Properties/ILGPU.Algorithms.nuspec.targets +++ b/Src/ILGPU.Algorithms/Properties/ILGPU.Algorithms.nuspec.targets @@ -4,7 +4,7 @@ $(Version) ILGPU Algorithms Library - Copyright (c) 2016-2024 ILGPU Project. All rights reserved. + Copyright (c) 2016-2025 ILGPU Project. All rights reserved. ILGPU Algorithms Project ILGPU Algorithms library for high-level GPU programming. diff --git a/Src/ILGPU/Properties/ILGPU.nuspec.targets b/Src/ILGPU/Properties/ILGPU.nuspec.targets index a57a3c386..e3f563026 100644 --- a/Src/ILGPU/Properties/ILGPU.nuspec.targets +++ b/Src/ILGPU/Properties/ILGPU.nuspec.targets @@ -4,7 +4,7 @@ $(Version) ILGPU - Copyright (c) 2016-2024 ILGPU Project. All rights reserved. + Copyright (c) 2016-2025 ILGPU Project. All rights reserved. Marcel Koester ILGPU Just-In-Time Compiler From f5f0f4698af61d592dceb8d8d0298343dc09f1e0 Mon Sep 17 00:00:00 2001 From: MoFtZ Date: Fri, 7 Feb 2025 12:38:52 +1100 Subject: [PATCH 3/3] Workaround deprecated build workflow. --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c64221b9f..81e8ec283 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,7 +99,7 @@ jobs: - name: Setup OS matrix id: setup-os-matrix run: | - os=("ubuntu-latest" "windows-latest") + os=("ubuntu-22.04" "windows-latest") # runs on macOS only if there is a push to master, or a tag is # pushed, we do this since macOS builds last too long and ILGPU @@ -267,7 +267,7 @@ jobs: run: .github/workflows/Scripts/FixNugetSymbolPackages.ps1 -version "${{ needs.check-version.outputs.version }}" - name: Upload NuGet package artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nuget-packages path: ./Bin/Release/ILGPU*.${{ needs.check-version.outputs.version }}.*nupkg @@ -300,7 +300,7 @@ jobs: # Verify that the sample projects can compile after switching to NuGet references - name: Download NuGet package artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nuget-packages path: local-nuget-packages @@ -326,7 +326,7 @@ jobs: # Upload samples artifact (for version tags and master branch only) - name: Upload Samples artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: github.event_name == 'push' && !github.event.repository.fork && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')) with: name: samples @@ -356,7 +356,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download NuGet package artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nuget-packages - name: Publish to FeedzIO @@ -374,11 +374,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Download NuGet package artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nuget-packages - name: Download Samples artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: samples