Replies: 1 comment
-
Your workaround seems fine for innocuous changes like the number of threads, etc. I thought about |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Drake has
ignore()
as part of its DSL, to mark a part of a target command as unimportant for reproducibility. I mostly used this for functions with internal parallelization, to pass the number of threads to use. This value depends on the exact execution context, but does not change the result of the command. I haven't been able to find any similar functionality in targets, so I am resorting to using environmental variables orget()
in order to defeat introspection. Is the lack of atar_ignore()
an intentional design decision? If so, what do you recommend for this specific use case?Beta Was this translation helpful? Give feedback.
All reactions