3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-13 02:34:44 +00:00

Reduce pass verbosity

This commit is contained in:
Akash Levy 2025-02-18 04:05:40 -08:00
parent 33c72b0f25
commit ef9645990e
3 changed files with 5 additions and 5 deletions

View file

@ -156,7 +156,7 @@ struct ExtractReducePass : public Pass
else
continue;
log("Working on cell %s...\n", cell->name.c_str());
log_debug("Working on cell %s...\n", cell->name.c_str());
// If looking for a single chain, follow linearly to the sink
pool<Cell*> sinks;
@ -243,7 +243,7 @@ struct ExtractReducePass : public Pass
//We have our list, go act on it
for(auto head_cell : sinks)
{
log(" Head cell is %s\n", head_cell->name.c_str());
log_debug(" Head cell is %s\n", head_cell->name.c_str());
//Avoid duplication if we already were covered
if(consumed_cells.count(head_cell))