3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-31 08:23:19 +00:00

Reduce verbosity of some key things

This commit is contained in:
Akash Levy 2025-03-04 22:58:56 -08:00
parent 47246954d4
commit 1b1855353d
4 changed files with 26 additions and 26 deletions

View file

@ -126,7 +126,7 @@ struct SplitfanoutWorker
}
// Iterate over bit users and create a new cell for each one
log("Splitting %s cell %s/%s into %d copies based on fanout\n", log_id(cell->type), log_id(module), log_id(cell), GetSize(bit_users)-1);
log_debug("Splitting %s cell %s/%s into %d copies based on fanout\n", log_id(cell->type), log_id(module), log_id(cell), GetSize(bit_users)-1);
int foi = 0;
cell->unsetPort(outport);
int num_new_cells = GetSize(bit_users)-1;