Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit d8437a8

Browse files
committed
TensorReferenceGroup: change printing format
Remove spurious letters. Print newlines after each reference's access relation for better readbility.
1 parent a1194c8 commit d8437a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/tc/core/polyhedral/memory_promotion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,9 @@ inline std::ostream& operator<<(std::ostream& os, const TensorReference& tr) {
179179
inline std::ostream& operator<<(
180180
std::ostream& os,
181181
const TensorReferenceGroup& tg) {
182-
os << " with footprint BB: " << tg.approximation << " ";
182+
os << "Reference with footprint: " << tg.approximation << "\n";
183183
for (const auto& tr : tg.references) {
184-
os << *tr << " ";
184+
os << *tr << "\n";
185185
}
186186
return os;
187187
}

0 commit comments

Comments
 (0)