-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate LV for Julia >= 1.11-DEV (#519)
* Deprecate LV for Julia >= 1.11-DEV * fix for tests to be able to run * README comment and bump version. * esc
- Loading branch information
1 parent
d2f749d
commit a4a160f
Showing
7 changed files
with
302 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "LoopVectorization" | ||
uuid = "bdcacae8-1622-11e9-2a5c-532679323890" | ||
authors = ["Chris Elrod <[email protected]>"] | ||
version = "0.12.166" | ||
version = "0.12.167" | ||
|
||
[deps] | ||
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
module SpecialFunctionsExt | ||
if VERSION < v"1.11-DEV" | ||
using SpecialFunctions | ||
using LoopVectorization: VectorizationBase | ||
using LoopVectorization: AbstractSIMD | ||
@inline SpecialFunctions.erf(x::AbstractSIMD) = VectorizationBase.verf(float(x)) | ||
end | ||
end |
Oops, something went wrong.
a4a160f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
Release notes:
Dropping support for
VERSION >= v"1.11-DEV"
. These versions will simply run@inbounds @fastmath
instead.a4a160f
There was a problem hiding this comment.
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/98144
Tagging
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: