Skip to content

Commit 9349365

Browse files
authored
Merge branch 'master' into patch-1
2 parents d5236cb + 03de201 commit 9349365

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modeling/determinestrategy.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1739,7 +1739,7 @@ function choose_order_cost(ls::LoopSet, v::Int = 0)
17391739
return torder,
17401740
tunroll,
17411741
ttile,
1742-
tvec,
1742+
isone(ls.vector_width) ? Symbol("##not#vectorized##") : tvec,
17431743
tU,
17441744
tT,
17451745
Core.ifelse(mismatched, Inf, tc),
@@ -1751,7 +1751,7 @@ function choose_order_cost(ls::LoopSet, v::Int = 0)
17511751
return uorder,
17521752
uunroll,
17531753
Symbol("##undefined##"),
1754-
uvec,
1754+
isone(ls.vector_width) ? Symbol("##not#vectorized##") : uvec,
17551755
UF,
17561756
-1,
17571757
Core.ifelse(mismatched, Inf, uc),

0 commit comments

Comments
 (0)