Skip to content

Commit

Permalink
higher latency comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Aug 22, 2022
1 parent 7b18d73 commit e97eafe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Project.toml
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.122"
version = "0.12.123"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down
12 changes: 6 additions & 6 deletions src/modeling/costs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@ const COST = Dict{Symbol,InstructionCost}(
:() => InstructionCost(1, 0.5),
:(%) => InstructionCost(13, 4.0, -2.0),
:(rem) => InstructionCost(13, 4.0, -2.0),
:(>) => InstructionCost(1, 0.5),
:(<) => InstructionCost(1, 0.5),
:(>=) => InstructionCost(1, 0.5),
:(<=) => InstructionCost(1, 0.5),
:() => InstructionCost(1, 0.5),
:() => InstructionCost(1, 0.5),
:(>) => InstructionCost(4, 1.0),
:(<) => InstructionCost(4, 1.0),
:(>=) => InstructionCost(4, 1.0),
:(<=) => InstructionCost(4, 1.0),
:() => InstructionCost(4, 1.0),
:() => InstructionCost(4, 1.0),
:(>>) => InstructionCost(1, 0.5),
:(>>>) => InstructionCost(1, 0.5),
:(<<) => InstructionCost(1, 0.5),
Expand Down

2 comments on commit e97eafe

@chriselrod
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
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/66797

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.123 -m "<description of version>" e97eafe4976ba12b02a71010f5cba71eec36bf70
git push origin v0.12.123

Please sign in to comment.