Skip to content

Commit bd31ed1

Browse files
committed
fix for designs with no amx fanout
Signed-off-by: arthurjolo <[email protected]>
1 parent f09d397 commit bd31ed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cts/src/TritonCTS.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ int TritonCTS::getBufferFanoutLimit(const std::string& bufferName)
173173
fanout = std::min(fanout, (int) tempFanout);
174174
}
175175
}
176-
return fanout;
176+
return fanout == std::numeric_limits<int>::max() ? 0 : fanout;
177177
}
178178

179179
void TritonCTS::setupCharacterization()

0 commit comments

Comments
 (0)