Skip to content

Commit 3cd8d0a

Browse files
committed
fix: ci + tree string
1 parent 19c294f commit 3cd8d0a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ jobs:
6363
ctest -j ${{env.parallel_processes}} -T memcheck -C ${{matrix.build_type}} --test-dir submission_25_05_08 --output-on-failure
6464
ctest -j ${{env.parallel_processes}} -T memcheck -C ${{matrix.build_type}} --test-dir submission_25_05_15 --output-on-failure
6565
ctest -j ${{env.parallel_processes}} -T memcheck -C ${{matrix.build_type}} --test-dir submission_25_05_22 --output-on-failure
66-
ctest -j ${{env.parallel_processes}} -T memcheck -C ${{matrix.build_type}} --output-on-failure -E "^Test *(gemm generation|unary|tensor operation|parallel tensor operation)"
66+
ctest -j ${{env.parallel_processes}} -T memcheck -C ${{matrix.build_type}} --output-on-failure -E "^Test *(gemm generation|unary|tensor operation|parallel tensor operation|einsum tree execute)"
6767

src/main/EinsumTree.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ std::string mini_jit::EinsumTree::EinsumNode::_to_string(uint depth, std::string
186186
{
187187
if (output_dim_ids.size() > 0)
188188
{
189-
output += std::format("{}{}─ {}", depthString, connection, output_dim_ids[0]);
189+
output += std::format("{}{}─ {}", depthString.substr(0, depthString.size() - 3), connection, output_dim_ids[0]);
190190
for (auto iDim = output_dim_ids.begin() + 1; iDim != output_dim_ids.end(); iDim++)
191191
{
192192
output += std::format(",{}", *iDim);
@@ -209,7 +209,7 @@ std::string mini_jit::EinsumTree::EinsumNode::_to_string(uint depth, std::string
209209

210210
if (right != nullptr)
211211
{
212-
output += right->_to_string(depth + 1, "", depthString + "| ");
212+
output += right->_to_string(depth + 1, "", depthString + " ");
213213
}
214214

215215
return output;

0 commit comments

Comments
 (0)