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
We want to add support for pipelines exported to argo and kubeflow to request specific resources for a given task (memory, CPU, GPU).
I'm thinking we could have a mapping in the config that matches task names to environments with certain characteristics:
my-config:
resources_mapping:
# train task should use this resourcestrain:
memory: some-valuecpu: some-value# support for wildcards - all tasks with the fit- prefix should execute with this resources# say: fit-some-model, fit-some-other-modelfit-*:
memory: some-valuecpu: some-value
Kubeflow uses argo under the hood, so I'm guessing it uses the same mechanism but if anyone has a link to the kubeflow docs that explain this part, please share it.
what it isn't clear to me is how the GPU comes into play here. Please comment if you have any extra info.
The text was updated successfully, but these errors were encountered:
We want to add support for pipelines exported to argo and kubeflow to request specific resources for a given task (memory, CPU, GPU).
I'm thinking we could have a mapping in the config that matches task names to environments with certain characteristics:
I found this on argo's documentation, I think this is what we need.
Kubeflow uses argo under the hood, so I'm guessing it uses the same mechanism but if anyone has a link to the kubeflow docs that explain this part, please share it.
what it isn't clear to me is how the GPU comes into play here. Please comment if you have any extra info.
The text was updated successfully, but these errors were encountered: