Skip to content

Commit

Permalink
don't test resolve on Metal
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 9, 2023
1 parent 789ae07 commit 4387dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/resolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ using LinearSolve, LinearAlgebra, SparseArrays, InteractiveUtils, Test

for alg in subtypes(LinearSolve.AbstractFactorization)
@show alg
if !(alg in [DiagonalFactorization, CudaOffloadFactorization, AppleAccelerateLUFactorization]) &&
if !(alg in [DiagonalFactorization, CudaOffloadFactorization, AppleAccelerateLUFactorization, MetalLUFactorization]) &&
(!(alg == AppleAccelerateLUFactorization) || LinearSolve.appleaccelerate_isavailable())

A = [1.0 2.0; 3.0 4.0]
Expand Down

0 comments on commit 4387dcc

Please sign in to comment.