Skip to content

Commit 9f395af

Browse files
committed
Disable spurious print statements.
1 parent 9efc4a3 commit 9f395af

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
@@ -272,10 +272,10 @@ function unroll_no_reductions(ls, order, vloopsym)
272272
# heuristic guess
273273
# roundpow2(min(4, round(Int, (compute_rt + load_rt + 1) / compute_rt)))
274274
memory_rt = load_rt + store_rt
275-
@show memory_rt, load_rt, store_rt, compute_rt, compute_l
275+
# @show memory_rt, load_rt, store_rt, compute_rt, compute_l
276276

277277
u = if compute_rt > memory_rt
278-
@show clamp(round(Int, compute_l / compute_rt), 1, 4)
278+
# @show clamp(round(Int, compute_l / compute_rt), 1, 4)
279279
# max(1, VectorizationBase.nextpow2( min( 4, round(Int, 8 / compute_rt) ) ))
280280
elseif iszero(compute_rt)
281281
4

0 commit comments

Comments
 (0)