From 4d47957a85233c18d4d991fd139f280f160cd85b Mon Sep 17 00:00:00 2001 From: Tim Besard Date: Tue, 10 Sep 2024 20:28:37 +0200 Subject: [PATCH] Fix CI. --- .github/workflows/ci.yml | 2 +- test/util_tests.jl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c116a536..00e7f238 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: arch: ${{ matrix.arch }} # set-up packages - - julia-actions/cache@v2 + - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - name: Run tests diff --git a/test/util_tests.jl b/test/util_tests.jl index aa199c03..4570142d 100644 --- a/test/util_tests.jl +++ b/test/util_tests.jl @@ -14,9 +14,9 @@ end # values checked with c++filt / cu++filt @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{false}}) == "_Z3sin2XXILb0EE" # "sin(XX)" @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{true}}) == "_Z3sin2XXILb1EE" # "sin(XX)" - @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Int64(10)}}) == "_Z3sin2XXILl10EE" # "sin(XX<10l>)" - @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Int64(0)}}) == "_Z3sin2XXILl0EE" # "sin(XX<0l>)" - @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Int64(-10)}}) == "_Z3sin2XXILln10EE" # "sin(XX<-10l>)" + @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Clong(10)}}) == "_Z3sin2XXILl10EE" # "sin(XX<10l>)" + @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Clong(0)}}) == "_Z3sin2XXILl0EE" # "sin(XX<0l>)" + @test GPUCompiler.mangle_sig(Tuple{typeof(sin), XX{Clong(-10)}}) == "_Z3sin2XXILln10EE" # "sin(XX<-10l>)" end @testset "safe loggers" begin