Initial sat_clockgate pass pre speed optimization

This commit is contained in:
AdvaySingh1 2026-02-17 11:19:18 -08:00
parent cc6605f8e2
commit f0de3ae8de
1 changed files with 1 additions and 0 deletions

View File

@ -631,6 +631,7 @@ struct SatClockgatePass : public Pass {
std::string clockgate_cmd = "clockgate";
for (auto &arg : clockgate_args)
clockgate_cmd += " " + arg;
log("Calling clockgate with args: %s\n", clockgate_cmd);
Pass::call(design, clockgate_cmd);
}
} SatClockgatePass;