Replies: 2 comments 5 replies
-
Yes the times are for each step of the value. At the end we generate a summary table like
|
Beta Was this translation helpful? Give feedback.
2 replies
-
I did the following code to retrieve the elapsed time of the log files in each design and sum each one to get the total runtime of each design. Maybe this is useful for someone else also.
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone.
On the end of log files there is usually something like:
5_3_route.log:
Elapsed time: 28:06.49[h:]min:sec. CPU time: user 6924.09 sys 34.88 (412%). Peak memory: 3802268KB.
6_report.log:
Elapsed time: 1:05.10[h:]min:sec. CPU time: user 53.04 sys 0.37 (82%). Peak memory: 619112KB.
These elapsed times do not accumulate with each other, right? They are just the elapsed time of each individual step in the flow. I could not find the total elapsed time, is it available anywhere? If not I guess I can read each log file and sum the elapsed time values.
Also, this means that 5_3_route took 28minutes and 6.49 seconds, right?
Beta Was this translation helpful? Give feedback.
All reactions