We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40449bd commit 367cddcCopy full SHA for 367cddc
techlibs/common/opensta.cc
@@ -101,6 +101,8 @@ struct OpenstaPass : public Pass
101
f_script.close();
102
std::string command = opensta_exe + " -exit " + script_filename;
103
auto process_line = [](const std::string &line) {
104
+ if (line.find("Creating black box") != std::string::npos)
105
+ return;
106
if (line.find("does not match net size") != std::string::npos)
107
return;
108
log("OpenSTA: %s", line.c_str());
0 commit comments