Skip to content

Commit 0a1fcaa

Browse files
committed
Temporarily use Float64 for some tests due to Enzyme issue
1 parent 27ca57c commit 0a1fcaa

3 files changed

Lines changed: 9 additions & 3 deletions

File tree

test/enzyme/eig.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ using Test
33
using LinearAlgebra: Diagonal
44
using CUDA, AMDGPU
55

6-
BLASFloats = (Float32, ComplexF64) # full suite is too expensive on CI
6+
# infinity-norm doesn't play nicely with Float32, Enzyme, and 1.12
7+
# see https://github.com/EnzymeAD/Enzyme.jl/issues/2985
8+
BLASFloats = (Float64, ComplexF64) # full suite is too expensive on CI
79
GenericFloats = ()
810
@isdefined(TestSuite) || include("../testsuite/TestSuite.jl")
911
using .TestSuite

test/enzyme/eigh.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ using Test
33
using LinearAlgebra: Diagonal
44
using CUDA, AMDGPU
55

6-
BLASFloats = (Float32, ComplexF64) # full suite is too expensive on CI
6+
# infinity-norm doesn't play nicely with Float32, Enzyme, and 1.12
7+
# see https://github.com/EnzymeAD/Enzyme.jl/issues/2985
8+
BLASFloats = (Float64, ComplexF64) # full suite is too expensive on CI
79
GenericFloats = ()
810
@isdefined(TestSuite) || include("../testsuite/TestSuite.jl")
911
using .TestSuite

test/enzyme/svd.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ using Test
33
using LinearAlgebra: Diagonal
44
using CUDA, AMDGPU
55

6-
BLASFloats = (Float32, ComplexF64) # full suite is too expensive on CI
6+
# infinity-norm doesn't play nicely with Float32, Enzyme, and 1.12
7+
# see https://github.com/EnzymeAD/Enzyme.jl/issues/2985
8+
BLASFloats = (Float64, ComplexF64) # full suite is too expensive on CI
79
GenericFloats = ()
810
@isdefined(TestSuite) || include("../testsuite/TestSuite.jl")
911
using .TestSuite

0 commit comments

Comments
 (0)