@@ -204,7 +204,7 @@ class UnstickExpansionPattern : public OpRewritePattern<ZLowUnstickOp> {
204
204
const int64_t unrollVL = 4 ;
205
205
const int64_t totVL = unrollVL * archVL;
206
206
assert (totVL <= 64 && " bad unroll" );
207
- create.krnl .printf (" unsitckify: full 64 stick\n " );
207
+ // create.krnl.printf("unsitckify: full 64 stick\n");
208
208
if (!neverHas64) {
209
209
create.scf .forLoop (litZero.getValue (), lit64.getValue (),
210
210
totVL, [&](const SCFBuilder b, ValueRange loopInd) {
@@ -258,7 +258,7 @@ class UnstickExpansionPattern : public OpRewritePattern<ZLowUnstickOp> {
258
258
[&](SCFBuilder b, ValueRange loopInd) {
259
259
MDBuilder create (b);
260
260
IndexExprScope innerScope (b, &middleScope);
261
- create.krnl .printf (" unsitckify: totVL val\n " );
261
+ // create.krnl.printf("unsitckify: totVL val\n");
262
262
Value loopIndex = loopInd[0 ];
263
263
IndexExpr l = DimIE (loopIndex);
264
264
// Load f16 values from input via reinterpreted data
@@ -307,11 +307,13 @@ class UnstickExpansionPattern : public OpRewritePattern<ZLowUnstickOp> {
307
307
outputAF[E1 ] = outputAF[E1 ] + SymIE (lastL);
308
308
outputAF[E1 ] = outputAF[E1 ] + l;
309
309
create.krnl .storeIE (f32, alloc, outputAF);
310
+ #if 0
310
311
create.krnl.printf("unsitckify: 1 val:");
311
312
for (auto af : outputAF)
312
313
create.krnl.printf(", ", af.getValue(),
313
314
af.getValue().getType(), false);
314
315
create.krnl.printf("\n");
316
+ #endif
315
317
});
316
318
});
317
319
});
0 commit comments