From f0de3ae8defa20d4a938d57cd48ba2680495a93f Mon Sep 17 00:00:00 2001 From: AdvaySingh1 Date: Tue, 17 Feb 2026 11:19:18 -0800 Subject: [PATCH] Initial sat_clockgate pass pre speed optimization --- passes/silimate/sat_clockgate.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/passes/silimate/sat_clockgate.cc b/passes/silimate/sat_clockgate.cc index 3e100fa81..351226ff0 100644 --- a/passes/silimate/sat_clockgate.cc +++ b/passes/silimate/sat_clockgate.cc @@ -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;