Skip to content

Commit e01579c

Browse files
Update to ArrayInterface v7
1 parent 83af31a commit e01579c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["Vedant Puri <[email protected]>"]
44
version = "0.1.21"
55

66
[deps]
7-
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"
7+
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
88
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
99
Lazy = "50d2b5c4-7a5e-59d5-8109-a42b560f39c0"
1010
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -14,7 +14,7 @@ StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
1414
Tricks = "410a4b4d-49e4-4fbc-ab6d-cb71b17b3775"
1515

1616
[compat]
17-
ArrayInterfaceCore = "0.1"
17+
ArrayInterface = "7"
1818
DocStringExtensions = "0.8, 0.9"
1919
Lazy = "0.15"
2020
Setfield = "0.8, 1"

src/SciMLOperators.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using DocStringExtensions
55
using LinearAlgebra
66
import SparseArrays
77
import StaticArraysCore
8-
import ArrayInterfaceCore
8+
import ArrayInterface
99
import Tricks: static_hasmethod
1010
import Lazy: @forward
1111
import Setfield: @set!

src/matrix.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Base.copyto!(L::MatrixOperator, rhs) = (copyto!(L.A, rhs); L)
7676
Base.copyto!(L::MatrixOperator, rhs::Base.Broadcast.Broadcasted{<:StaticArraysCore.StaticArrayStyle}) = (copyto!(L.A, rhs); L)
7777
Base.Broadcast.broadcastable(L::MatrixOperator) = L
7878
Base.ndims(::Type{<:MatrixOperator{T,AType}}) where{T,AType} = ndims(AType)
79-
ArrayInterfaceCore.issingular(L::MatrixOperator) = ArrayInterfaceCore.issingular(L.A)
79+
ArrayInterface.issingular(L::MatrixOperator) = ArrayInterface.issingular(L.A)
8080
Base.copy(L::MatrixOperator) = MatrixOperator(copy(L.A);update_func=L.update_func)
8181

8282
# operator application

0 commit comments

Comments
 (0)