From 7f8cc3f23b82025cbfb4576a472e0dc2c720e0bb Mon Sep 17 00:00:00 2001 From: Katharine Hyatt Date: Tue, 7 Jan 2025 20:59:59 -0500 Subject: [PATCH] Fix Project.toml and restore prepend --- test/Project.toml | 1 - test/libraries/cublas_level1.jl | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/Project.toml b/test/Project.toml index 97a2e028fa..5d6ea83e88 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -2,7 +2,6 @@ AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c" Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e" BFloat16s = "ab4f0b2a-ad5b-11e8-123f-65d77653426b" -CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" CUDA_Driver_jll = "4ee394cb-3365-5eb0-8335-949819d2adfc" CUDA_Runtime_jll = "76a88914-d11a-5bdc-97e0-2f5a05c973a2" ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" diff --git a/test/libraries/cublas_level1.jl b/test/libraries/cublas_level1.jl index 9bcb81d72f..c803de7a3c 100644 --- a/test/libraries/cublas_level1.jl +++ b/test/libraries/cublas_level1.jl @@ -28,7 +28,7 @@ k = 13 @test testf(norm, rand(T, m)) @test testf(BLAS.asum, rand(T, m)) @test testf(axpy!, Ref(rand()), rand(T, m), rand(T, m)) - @test testf(axpby!, Ref(rand()), rand(T, m), Ref(rand()), rand(T, m)) + @test testf(LinearAlgebra.axpby!, Ref(rand()), rand(T, m), Ref(rand()), rand(T, m)) if T <: Complex @test testf(dot, rand(T, m), rand(T, m))