Skip to content

Commit

Permalink
Disable symtridiagonal s-kwarg test
Browse files Browse the repository at this point in the history
  • Loading branch information
nHackel authored and dpo committed Nov 23, 2024
1 parent ca32396 commit 42e4e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/gpu/test_S_kwarg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function test_S_kwarg(; arrayType, notMetal = true)
@test LinearOperators.storage_type(LinearOperator(mat)) == LinearOperators.storage_type(mat) # default
notMetal && @test LinearOperators.storage_type(LinearOperator(mat; S = vecTother)) == vecTother
@test LinearOperators.storage_type(LinearOperator(Symmetric(mat); S = vecT)) == vecT
notMetal && @test LinearOperators.storage_type(LinearOperator(SymTridiagonal(Symmetric(mat)); S = vecT)) == vecT
#notMetal && @test LinearOperators.storage_type(LinearOperator(SymTridiagonal(Symmetric(mat)); S = vecT)) == vecT
@test LinearOperators.storage_type(LinearOperator(Hermitian(mat); S = vecT)) == vecT
@test LinearOperators.storage_type(LinearOperator(Float32, 32, 32, true, true, () -> 0; S = vecT)) == vecT

Expand Down

0 comments on commit 42e4e36

Please sign in to comment.