@@ -470,16 +470,12 @@ TEST(workspaces, DISABLED_tile_dotProduct_1) {
470
470
stmt = stmt.bound (i, i_bounded, (size_t )N, BoundType::MaxExact)
471
471
.split (i_bounded, i0, i1, 32 );
472
472
stmt = stmt.precompute (precomputedExpr, i1, i1, precomputed);
473
-
474
- cout << stmt << endl;
475
- cout << endl;
476
473
477
474
stmt = stmt.precompute (BExpr, i1, i1, B_new)
478
475
.precompute (CExpr, i1, i1, C_new);
479
476
480
477
481
478
stmt = stmt.concretize ();
482
- cout << stmt << endl;
483
479
484
480
A.compile (stmt);
485
481
A.assemble ();
@@ -527,17 +523,13 @@ TEST(workspaces, DISABLED_tile_dotProduct_2) {
527
523
528
524
stmt = stmt.precompute (precomputedExpr, i, i, precomputed);
529
525
530
- cout << stmt << endl;
531
- cout << endl;
532
-
533
526
stmt = stmt.precompute (BExpr, i, i, B_new)
534
527
.precompute (CExpr, i, i, C_new);
535
528
536
529
stmt = stmt.bound (i, i_bounded, (size_t )N, BoundType::MaxExact)
537
530
.split (i_bounded, i0, i1, 32 );
538
531
539
532
stmt = stmt.concretize ();
540
- cout << stmt << endl;
541
533
542
534
A.compile (stmt);
543
535
A.assemble ();
0 commit comments