Skip to content

Commit b64dae1

Browse files
Merge pull request #313 from SciML/static
Remove dependency on Static.jl
2 parents bb43bfa + 08aed89 commit b64dae1

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1313
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
1414
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1515
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
16-
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
1716
StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
1817
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1918
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
@@ -54,7 +53,6 @@ RecipesBase = "0.7, 0.8, 1.0"
5453
Requires = "1.0"
5554
SafeTestsets = "0.1"
5655
SparseArrays = "1"
57-
Static = "0.3, 0.4, 0.5, 0.6, 0.7, 0.8"
5856
StaticArrays = "1.6"
5957
StaticArraysCore = "1.1"
6058
Statistics = "1"

ext/RecursiveArrayToolsFastBroadcastExt.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ module RecursiveArrayToolsFastBroadcastExt
22

33
using RecursiveArrayTools
44
using FastBroadcast
5-
using Static
65
using StaticArraysCore
76

87
const AbstractVectorOfSArray = AbstractVectorOfArray{T,N,<:AbstractVector{<:StaticArraysCore.SArray}} where {T,N}
98

10-
@inline function FastBroadcast.fast_materialize!(::False, ::DB, dst::AbstractVectorOfSArray, bc::Broadcast.Broadcasted{S}) where {S,DB}
9+
@inline function FastBroadcast.fast_materialize!(::FastBroadcast.Static.False, ::DB, dst::AbstractVectorOfSArray, bc::Broadcast.Broadcasted{S}) where {S,DB}
1110
if FastBroadcast.use_fast_broadcast(S)
1211
for i in 1:length(dst.u)
1312
unpacked = RecursiveArrayTools.unpack_voa(bc, i)

src/RecursiveArrayTools.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ using RecipesBase, StaticArraysCore, Statistics,
99
ArrayInterface, LinearAlgebra
1010
using SymbolicIndexingInterface
1111
using SparseArrays
12-
import Static # so it isn't a stale dep, used in FastBroadcastExt
1312

1413
import Adapt
1514

0 commit comments

Comments
 (0)