Skip to content

Commit 016b821

Browse files
committed
Add conj to costs.
1 parent 9a04bce commit 016b821

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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)