@@ -45,10 +45,10 @@ using taco::error::expr_transposition;
4545#include "taco/lower/mode_format_dense.h"
4646taco::ModeFormat dense(std::make_shared<taco::DenseModeFormat>());
4747
48- static const Dimension n, m, o ;
48+ static const Dimension n;
4949static const Type vectype(Float64, {n});
50- static const Type mattype(Float64, {n,m });
51- static const Type tentype(Float64, {n,m,o });
50+ static const Type mattype(Float64, {n,n });
51+ static const Type tentype(Float64, {n,n,n });
5252
5353static TensorVar alpha("alpha", Float64);
5454static TensorVar beta("beta", Float64);
@@ -282,17 +282,14 @@ TEST_P(lower, compile) {
282282 }
283283
284284 {
285- SCOPED_TRACE("Separate Assembly and Compute\n" +
286- toString(taco::lower(stmt,"assemble",true,false)) + "\n" +
287- toString(taco::lower(stmt,"compute",false,true)));
285+ SCOPED_TRACE("Separate Assembly and Compute\n");
288286 ASSERT_TRUE(kernel.assemble(arguments));
289287 ASSERT_TRUE(kernel.compute(arguments));
290288 verifyResults(results, arguments, varsFormatted, expected);
291289 }
292290
293291 {
294- SCOPED_TRACE("Fused Assembly and Compute\n" +
295- toString(taco::lower(stmt,"evaluate",true,true)));
292+ SCOPED_TRACE("Fused Assembly and Compute\n");
296293 ASSERT_TRUE(kernel(arguments));
297294 verifyResults(results, arguments, varsFormatted, expected);
298295 }
@@ -734,8 +731,8 @@ TEST_STMT(DISABLED_where_spmm,
734731 forall(j,
735732 w(j) += B(i,k) * C(k,j))))),
736733 Values(
737- Formats({{A,Format({dense,dense})},
738- {B,Format({dense,dense})}, {C,Format({dense,dense})}}),
734+ // Formats({{A,Format({dense,dense})},
735+ // {B,Format({dense,dense})}, {C,Format({dense,dense})}}),
739736 Formats({{A,Format({dense,sparse})},
740737 {B,Format({dense,sparse})}, {C,Format({dense,sparse})}})
741738 ),
@@ -1584,4 +1581,3 @@ TEST_STMT(vector_not,
15841581 {{a, {{{1}, 1.0}, {{2}, 1.0}, {{3}, 1.0}}}})
15851582 }
15861583)
1587-
0 commit comments