From 973a43b545b4f5fd37edda306672480ff83b5c03 Mon Sep 17 00:00:00 2001 From: Michael Abbott <32575566+mcabbott@users.noreply.github.com> Date: Sat, 20 Aug 2022 13:54:40 -0400 Subject: [PATCH] remove two gpu tests --- test/rulesets/Base/arraymath.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/rulesets/Base/arraymath.jl b/test/rulesets/Base/arraymath.jl index 5eaf9e7fc..5d2a96bc6 100644 --- a/test/rulesets/Base/arraymath.jl +++ b/test/rulesets/Base/arraymath.jl @@ -69,12 +69,12 @@ @gpu test_frule(*, Diagonal([1.0, 2.0, 3.0]), rand(3)) # rev - @gpu test_rrule(*, Diagonal([1.0, 2.0, 3.0]), Diagonal([4.0, 5.0, 6.0])) + test_rrule(*, Diagonal([1.0, 2.0, 3.0]), Diagonal([4.0, 5.0, 6.0])) # @gpu broken on 1.8, worked on 1.7, https://github.com/JuliaGPU/GPUArrays.jl/issues/426 @gpu test_rrule(*, Diagonal([1.0, 2.0, 3.0]), rand(3)) # Needs to not try and inplace, as `mul!` will do wrong. # see https://github.com/JuliaDiff/ChainRulesCore.jl/issues/411 - @gpu test_rrule(*, Diagonal([1.0, 2.0, 3.0]), rand(3,3)) + test_rrule(*, Diagonal([1.0, 2.0, 3.0]), rand(3,3)) # @gpu broken on 1.8, worked on 1.7, https://github.com/JuliaGPU/GPUArrays.jl/issues/426 end @testset "$adj * Vector" for adj in (adjoint, transpose)