Skip to content

Commit 5b9c433

Browse files
author
Thimoté Dupuch
committed
add LoopVectorization to the project's dependencies
1 parent 745cbd0 commit 5b9c433

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ version = "0.2.4"
66
[deps]
77
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9+
LoopVectorization = "bdcacae8-1622-11e9-2a5c-532679323890"
910
Manifolds = "1cead3c2-87b3-11e9-0ccd-23c62b72b94e"
1011
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
1112
Rotations = "6038ab10-8711-5258-84ad-4b1120ba62dc"
1213
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
13-
# TODO : add LoopVectorization here
1414

1515
[compat]
1616
DocStringExtensions = "0.8, 0.9"
17+
LoopVectorization = "0.12.173"
1718
Manifolds = "0.10, 0.11"
1819
RecursiveArrayTools = "3.27.0"
1920
Rotations = "1"

src/services/Utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function radialDistortion!(
7676

7777
num = one(T)
7878
rⁿ =
79-
@inbounds for i in 1:N
79+
for i in 1:N
8080
num += k[i] * rⁿ
8181
rⁿ *=
8282
end

0 commit comments

Comments
 (0)