@@ -470,16 +470,12 @@ TEST(workspaces, DISABLED_tile_dotProduct_1) {
470470 stmt = stmt.bound (i, i_bounded, (size_t )N, BoundType::MaxExact)
471471 .split (i_bounded, i0, i1, 32 );
472472 stmt = stmt.precompute (precomputedExpr, i1, i1, precomputed);
473-
474- cout << stmt << endl;
475- cout << endl;
476473
477474 stmt = stmt.precompute (BExpr, i1, i1, B_new)
478475 .precompute (CExpr, i1, i1, C_new);
479476
480477
481478 stmt = stmt.concretize ();
482- cout << stmt << endl;
483479
484480 A.compile (stmt);
485481 A.assemble ();
@@ -527,17 +523,13 @@ TEST(workspaces, DISABLED_tile_dotProduct_2) {
527523
528524 stmt = stmt.precompute (precomputedExpr, i, i, precomputed);
529525
530- cout << stmt << endl;
531- cout << endl;
532-
533526 stmt = stmt.precompute (BExpr, i, i, B_new)
534527 .precompute (CExpr, i, i, C_new);
535528
536529 stmt = stmt.bound (i, i_bounded, (size_t )N, BoundType::MaxExact)
537530 .split (i_bounded, i0, i1, 32 );
538531
539532 stmt = stmt.concretize ();
540- cout << stmt << endl;
541533
542534 A.compile (stmt);
543535 A.assemble ();
0 commit comments