Skip to content

Commit 1f9ce87

Browse files
authored
Remove unused imports. Fixes #100. (#101)
1 parent 4a61d2b commit 1f9ce87

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name = "Octavian"
22
uuid = "6fd5a793-0b7e-452c-907f-f8bfe9c57db4"
33
authors = ["Mason Protter", "Chris Elrod", "Dilum Aluthge", "contributors"]
4-
version = "0.2.19"
4+
version = "0.2.20"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
8+
IfElse = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173"
89
LoopVectorization = "bdcacae8-1622-11e9-2a5c-532679323890"
910
Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3"
1011
StrideArraysCore = "7792a7ef-975c-4747-a70f-980b88e8d1da"
@@ -13,6 +14,7 @@ VectorizationBase = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"
1314

1415
[compat]
1516
ArrayInterface = "3.1.14"
17+
IfElse = "0.1"
1618
LoopVectorization = "0.12.34"
1719
Static = "0.2"
1820
StrideArraysCore = "0.1.11"

src/Octavian.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module Octavian
33
using VectorizationBase, ArrayInterface, LoopVectorization
44

55
using VectorizationBase: align, AbstractStridedPointer, zstridedpointer, vsub_nsw, assume,
6-
static_sizeof, lazymul, StridedPointer, gesp, pause, pick_vector_width, has_feature,
7-
num_cache_levels, cache_size, num_cores, num_cores, cache_inclusive, cache_linesize, ifelse
8-
using LoopVectorization: maybestaticsize, preserve_buffer, CloseOpen, UpperBoundedInteger
9-
using ArrayInterface: OptionallyStaticUnitRange, size, strides, offsets, indices,
10-
static_length, static_first, static_last, axes, dense_dims, stride_rank
11-
6+
static_sizeof, StridedPointer, gesp, pause, pick_vector_width, has_feature,
7+
cache_size, num_cores, num_cores, cache_inclusive, cache_linesize
8+
using LoopVectorization: preserve_buffer, CloseOpen, UpperBoundedInteger
9+
using ArrayInterface: size, strides, offsets, indices, axes
10+
using IfElse: ifelse
11+
1212
using Static: StaticInt, Zero, One, StaticBool, True, False, gt, eq, StaticFloat64,
1313
roundtostaticint, floortostaticint
1414
using StrideArraysCore: MemoryBuffer

0 commit comments

Comments
 (0)