Skip to content

Commit

Permalink
skip apple test on non-apple platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Aug 7, 2023
1 parent f78754f commit 93382d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/resolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ using LinearSolve, LinearAlgebra, SparseArrays, InteractiveUtils, Test

for alg in subtypes(LinearSolve.AbstractFactorization)
@show alg
if alg isa AppleAccelerateLUFactorization && !LinearSolve.appleaccelerate_isavailable()
continue
end
if !(alg in [DiagonalFactorization, CudaOffloadFactorization])
A = [1.0 2.0; 3.0 4.0]
alg in [KLUFactorization, UMFPACKFactorization, SparspakFactorization] &&
Expand Down

0 comments on commit 93382d1

Please sign in to comment.