Skip to content

Commit e97eafe

Browse files
committed
higher latency comparisons
1 parent 7b18d73 commit e97eafe

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LoopVectorization"
22
uuid = "bdcacae8-1622-11e9-2a5c-532679323890"
33
authors = ["Chris Elrod <[email protected]>"]
4-
version = "0.12.122"
4+
version = "0.12.123"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

src/modeling/costs.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,12 +178,12 @@ const COST = Dict{Symbol,InstructionCost}(
178178
:() => InstructionCost(1, 0.5),
179179
:(%) => InstructionCost(13, 4.0, -2.0),
180180
:(rem) => InstructionCost(13, 4.0, -2.0),
181-
:(>) => InstructionCost(1, 0.5),
182-
:(<) => InstructionCost(1, 0.5),
183-
:(>=) => InstructionCost(1, 0.5),
184-
:(<=) => InstructionCost(1, 0.5),
185-
:() => InstructionCost(1, 0.5),
186-
:() => InstructionCost(1, 0.5),
181+
:(>) => InstructionCost(4, 1.0),
182+
:(<) => InstructionCost(4, 1.0),
183+
:(>=) => InstructionCost(4, 1.0),
184+
:(<=) => InstructionCost(4, 1.0),
185+
:() => InstructionCost(4, 1.0),
186+
:() => InstructionCost(4, 1.0),
187187
:(>>) => InstructionCost(1, 0.5),
188188
:(>>>) => InstructionCost(1, 0.5),
189189
:(<<) => InstructionCost(1, 0.5),

0 commit comments

Comments
 (0)