You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What we need is a set of functions that that can help determine whether a recipe with sparse supporting steps should handle them as sparse or dense.
First we need a function that can toggle sparse argument. for a given step, the function should set all sparse arguments that are set to "auto" and respects if they are already set to "yes" or "no".
secondly, and harder, is a function that estimates the amount of sparsity that is produces from a recipe. For now it will be fairly simple since we don't have input-output information. It should further rely on early exits for maximal performance. e.i. if the recipe doesn't contain sparse steps -> early return.
The text was updated successfully, but these errors were encountered:
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex https://reprex.tidyverse.org) and link to this issue.
What we need is a set of functions that that can help determine whether a recipe with sparse supporting steps should handle them as sparse or dense.
First we need a function that can toggle
sparse
argument. for a given step, the function should set all sparse arguments that are set to"auto"
and respects if they are already set to"yes"
or"no"
.secondly, and harder, is a function that estimates the amount of sparsity that is produces from a recipe. For now it will be fairly simple since we don't have input-output information. It should further rely on early exits for maximal performance. e.i. if the recipe doesn't contain
sparse
steps -> early return.The text was updated successfully, but these errors were encountered: