Skip to content

Commit b0fd93c

Browse files
committed
fix typo
Signed-off-by: arthurjolo <[email protected]>
1 parent 9dd5ddd commit b0fd93c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cts/src/TritonCTS.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,10 +1078,10 @@ void TritonCTS::findLongEdges(
10781078
int dx = block_->getDieAreaPolygon().dx();
10791079
int dy = block_->getDieAreaPolygon().dy();
10801080

1081-
int64_t threashold = std::max(dx, dy) / 5;
1081+
int64_t threshold = std::max(dx, dy) / 5;
10821082
// TODO : Make it a debug print
10831083
debugPrint(
1084-
logger_, CTS, "clock gate cloning", 1, "Treashold = {}", threashold);
1084+
logger_, CTS, "clock gate cloning", 1, "Threshold = {}", threshold);
10851085
std::map<int, int> iterm2cluster;
10861086
std::vector<std::vector<int>> clusters;
10871087
odb::dbNet* icgNet = point2pin[driverPt][0]->getNet();
@@ -1110,7 +1110,7 @@ void TritonCTS::findLongEdges(
11101110
} else if (neighborPt == driverPt) {
11111111
driverNId = b;
11121112
}
1113-
if (dist >= threashold) {
1113+
if (dist >= threshold) {
11141114
if (clusterFrom == -1) {
11151115
int newClusterID = clusters.size();
11161116
iterm2cluster[b] = newClusterID;

0 commit comments

Comments
 (0)