Skip to content

Commit d127158

Browse files
committed
Remove couts in tests-workspaces.cpp
1 parent e72fd96 commit d127158

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

test/tests-workspaces.cpp

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)