Skip to content

Commit 03b8471

Browse files
committed
Remove StaticArrays.
1 parent 1df991a commit 03b8471

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1010
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1111
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1212
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
13-
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1413
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1514

1615
[compat]

src/testsuite.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ using Test
1212

1313
using FFTW
1414
using FillArrays
15-
using StaticArrays
1615

1716
convert_array(f, x) = f(x)
1817
convert_array(f, x::Base.RefValue) = x[]

src/testsuite/indexing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function test_indexing(AT)
22
# TODO: more fine-grained allowscalar within test_indexing
33
GPUArrays.@allowscalar @testset "indexing" begin
4-
for T in (Float32, Int32#=, SVector{3, Float32}=#)
4+
for T in (Float32, Int32)
55
@testset "Indexing with $T" begin
66
x = rand(T, 32)
77
src = AT(x)

0 commit comments

Comments
 (0)