mirror of https://github.com/YosysHQ/yosys.git
Update passes/cmds/stat.cc
Make reporting line more clear about the non cumulative area of sequential cells Co-authored-by: N. Engelhardt <nakengelhardt@gmail.com>
This commit is contained in:
parent
f0df0e3912
commit
b8a1009de9
|
@ -256,7 +256,7 @@ struct statdata_t
|
|||
if (area != 0) {
|
||||
log("\n");
|
||||
log(" Chip area for %smodule '%s': %f\n", (top_mod) ? "top " : "", mod_name.c_str(), area);
|
||||
log(" Sequential area for %smodule '%s': %f\n", (top_mod) ? "top " : "", mod_name.c_str(), sequential_area);
|
||||
log(" of which used for sequential elements: %f (%.2f%%)\n", sequential_area, 100.0*sequential_area/area);
|
||||
}
|
||||
|
||||
if (tech == "xilinx")
|
||||
|
|
Loading…
Reference in New Issue