@@ -45,10 +45,10 @@ using taco::error::expr_transposition;
45
45
#include "taco/lower/mode_format_dense.h"
46
46
taco::ModeFormat dense(std::make_shared<taco::DenseModeFormat>());
47
47
48
- static const Dimension n, m, o ;
48
+ static const Dimension n;
49
49
static 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 });
52
52
53
53
static TensorVar alpha("alpha", Float64);
54
54
static TensorVar beta("beta", Float64);
@@ -282,17 +282,14 @@ TEST_P(lower, compile) {
282
282
}
283
283
284
284
{
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");
288
286
ASSERT_TRUE(kernel.assemble(arguments));
289
287
ASSERT_TRUE(kernel.compute(arguments));
290
288
verifyResults(results, arguments, varsFormatted, expected);
291
289
}
292
290
293
291
{
294
- SCOPED_TRACE("Fused Assembly and Compute\n" +
295
- toString(taco::lower(stmt,"evaluate",true,true)));
292
+ SCOPED_TRACE("Fused Assembly and Compute\n");
296
293
ASSERT_TRUE(kernel(arguments));
297
294
verifyResults(results, arguments, varsFormatted, expected);
298
295
}
@@ -734,8 +731,8 @@ TEST_STMT(DISABLED_where_spmm,
734
731
forall(j,
735
732
w(j) += B(i,k) * C(k,j))))),
736
733
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})}}),
739
736
Formats({{A,Format({dense,sparse})},
740
737
{B,Format({dense,sparse})}, {C,Format({dense,sparse})}})
741
738
),
@@ -1584,4 +1581,3 @@ TEST_STMT(vector_not,
1584
1581
{{a, {{{1}, 1.0}, {{2}, 1.0}, {{3}, 1.0}}}})
1585
1582
}
1586
1583
)
1587
-
0 commit comments