File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -384,20 +384,11 @@ for pred in (
384384 :isposdef ,
385385 )
386386 @eval function LinearAlgebra. $pred (L:: AbstractSciMLOperator )
387- @warn """ using convert-based fallback in $pred ."""
387+ @warn """ using convert-based fallback in $( $ pred) ."""
388388 $ pred (convert (AbstractMatrix, L))
389389 end
390390end
391391
392- for op in (
393- :sum ,:prod
394- )
395- @eval function LinearAlgebra. $op (L:: AbstractSciMLOperator ; kwargs... )
396- @warn """ using convert-based fallback in $op ."""
397- $ op (convert (AbstractMatrix, L); kwargs... )
398- end
399- end
400-
401392function LinearAlgebra. mul! (v:: AbstractArray , L:: AbstractSciMLOperator , u:: AbstractArray )
402393 @warn """ using convert-based fallback in mul!."""
403394 mul! (v, convert (AbstractMatrix, L), u)
You can’t perform that action at this time.
0 commit comments