Skip to content

Commit e2da0d5

Browse files
committed
2 parents 0213aa2 + 7d7930c commit e2da0d5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
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.8.2"
4+
version = "0.8.3"
55

66
[deps]
77
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
@@ -18,7 +18,7 @@ OffsetArrays = "1"
1818
SIMDPirates = "0.8.4"
1919
SLEEFPirates = "0.5"
2020
UnPack = "0,1"
21-
VectorizationBase = "0.12.4"
21+
VectorizationBase = "0.12.6"
2222
julia = "1.1"
2323

2424
[extras]

src/costs.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ const COST = Dict{Symbol,InstructionCost}(
228228
:sincospi_fast => InstructionCost(25,22.0,70.0,26),
229229
:identity => InstructionCost(0,0.0,0.0,0),
230230
:adjoint => InstructionCost(0,0.0,0.0,0),
231+
:conj => InstructionCost(0,0.0,0.0,0),
231232
:transpose => InstructionCost(0,0.0,0.0,0),
232233
:prefetch => InstructionCost(0,0.0,0.0,0),
233234
:prefetch0 => InstructionCost(0,0.0,0.0,0),
@@ -433,5 +434,6 @@ const FUNCTIONSYMBOLS = IdDict{Type{<:Function},Instruction}(
433434
typeof(>>>) => :>>>,
434435
typeof(ifelse) => :vifelse,
435436
typeof(vifelse) => :vifelse,
436-
typeof(identity) => :identity
437+
typeof(identity) => :identity,
438+
typeof(conj) => :conj
437439
)

0 commit comments

Comments
 (0)