3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-16 20:25:43 +00:00

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

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;