Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Aqua = "0.6, 0.7, 0.8"
CUDA = "5"
ChainRulesCore = "1"
ChainRulesTestUtils = "1"
Enzyme = "0.13.118"
Enzyme = "0.13.131"
EnzymeTestUtils = "0.2.5"
GenericLinearAlgebra = "0.3.19"
GenericSchur = "0.5.6"
Expand Down
4 changes: 1 addition & 3 deletions test/enzyme/eig.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ using Test
using LinearAlgebra: Diagonal
using CUDA, AMDGPU

# infinity-norm doesn't play nicely with Float32, Enzyme, and 1.12
# see https://github.com/EnzymeAD/Enzyme.jl/issues/2985
BLASFloats = (Float64, ComplexF64) # full suite is too expensive on CI
BLASFloats = (Float32, ComplexF64) # full suite is too expensive on CI
GenericFloats = ()
@isdefined(TestSuite) || include("../testsuite/TestSuite.jl")
using .TestSuite
Expand Down
4 changes: 1 addition & 3 deletions test/enzyme/eigh.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ using Test
using LinearAlgebra: Diagonal
using CUDA, AMDGPU

# infinity-norm doesn't play nicely with Float32, Enzyme, and 1.12
# see https://github.com/EnzymeAD/Enzyme.jl/issues/2985
BLASFloats = (Float64, ComplexF64) # full suite is too expensive on CI
BLASFloats = (Float32, ComplexF64) # full suite is too expensive on CI
GenericFloats = ()
@isdefined(TestSuite) || include("../testsuite/TestSuite.jl")
using .TestSuite
Expand Down
4 changes: 1 addition & 3 deletions test/enzyme/svd.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ using Test
using LinearAlgebra: Diagonal
using CUDA, AMDGPU

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