Skip to content

Commit

Permalink
Restrict LoopVectorization to <v0.6.22
Browse files Browse the repository at this point in the history
  • Loading branch information
zsoerenm committed Mar 23, 2020
1 parent 34661f1 commit c04052c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Expand Up @@ -14,7 +14,7 @@ Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
[compat]
DocStringExtensions = "0.6, 0.7, 0.8"
FixedPointSinCosApproximations = "0.1"
LoopVectorization = "0.6.11"
LoopVectorization = "<0.6.22"
StructArrays = "0.4"
Unitful = "0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 1.0"
julia = "1.1"
Expand Down
2 changes: 1 addition & 1 deletion src/carrier.jl
Expand Up @@ -143,7 +143,7 @@ function fpcarrier!(
num_samples::Integer = length(phases),
bits::Val{N} = Val(5)
) where {VT <: Vector{Int16}, N}
@_avx for i = start_sample:num_samples + start_sample - 1
@avx unroll = 6 for i = start_sample:num_samples + start_sample - 1
carrier_sin[i] = fpsin(phases[i], bits)
carrier_cos[i] = fpcos(phases[i], bits)
end
Expand Down

2 comments on commit c04052c

@zsoerenm
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/11425

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.12.2 -m "<description of version>" c04052cad9babd87bc0f48910b355bc1d1777fbb
git push origin v0.12.2

Please sign in to comment.