Skip to content

Commit 0145350

Browse files
authored
Merge pull request #60 from RafaelDavidMohr/rm/remove-loopvec
Remove `LoopVectorization`
2 parents 40a4f18 + bfac718 commit 0145350

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ version = "0.4.16"
66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
9-
LoopVectorization = "bdcacae8-1622-11e9-2a5c-532679323890"
109
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
1110
Nemo = "2edaba10-b0f1-5616-af89-8c11ac63239a"
1211
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
@@ -16,14 +15,13 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1615
msolve_jll = "6d01cc9a-e8f6-580e-8c54-544227e08205"
1716

1817
[compat]
19-
LoopVectorization = "0.12"
20-
Nemo = "0.43, 0.44, 0.45"
21-
StaticArrays = "1"
22-
julia = "1.6"
2318
LinearAlgebra = "1.6"
2419
Logging = "1.6"
2520
Markdown = "1.6"
21+
Nemo = "0.43, 0.44, 0.45"
2622
Printf = "1.6"
2723
Random = "1.6"
24+
StaticArrays = "1"
2825
Test = "1.6"
26+
julia = "1.6"
2927
msolve_jll = "0.600.501"

src/imports.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ using msolve_jll
44
using Nemo
55
using LinearAlgebra
66
using StaticArrays
7-
using LoopVectorization
87

98
import Random: MersenneTwister
109
import Logging: ConsoleLogger, with_logger, Warn, Info

src/siggb/linear_algebra.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ end
117117

118118
@inbounds buffer[bufind] = zero(Cbuf)
119119
l = length(pivmons)
120-
@turbo warn_check_args=false for k in 2:l
120+
for k in 2:l
121121
c = pivcoeffs[k]
122122
m_idx = pivmons[k]
123123
colidx = hash2col[m_idx]

src/siggb/siggb.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ end
229229
function _homogenize(F::Vector{P}) where {P <: MPolyRingElem}
230230
R = parent(first(F))
231231
S, vars = polynomial_ring(base_ring(R), ["x$i" for i in 1:nvars(R)+1],
232-
internal_ordering = :degrevlex)
232+
internal_ordering = :degrevlex)
233233
res = typeof(first(F))[]
234234
for f in F
235235
ctx = MPolyBuildCtx(S)

0 commit comments

Comments
 (0)