-
When using
Running Is this value of I know that Is there a way to see the actual human time it took to build a target instead of the total computation time across all cores? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
As you say, If you invoke |
Beta Was this translation helpful? Give feedback.
As you say,
targets
computes the elapsed runtime at a granular level. For a non-branching target or an individual branch, this is just the number of seconds it took to run the last time it was not skipped. For a branching target, the runtime is the sum of the last runtimes of all the branches. These results do not depend on which targets were skipped last, and they do not depend on the number of parallel workers, which could vary from run to run based on the user's choice. These decisions make the reported times more reliable and consistent than otherwise.If you invoke
tar_make_clustermq()
from inside a script and run the script withR CMD BATCH
, then the.Rout
file will report the elaps…