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
In the case of multiple machines you would like to run the same command. But pixi should figure out which environment to run. Either with some help or even automatically.
This could be a use-case for multiple machines running the same scripts on different hardware accelerated chipsets. start can't depend on these tasks as they are ambiguous so you would have to define a start per env and then select that env. So this doesn't work, if you want start from default but train-model from cuda:
It would be great to have some sort of auto selection logic. Like checking which envs would be able to run on the current machine. And if that would not be enough let the user define which task it depends on.
E.g.: task_name = { depends_on = ["cuda:train_model"] }
The text was updated successfully, but these errors were encountered:
Problem description
In the case of multiple machines you would like to run the same command. But pixi should figure out which environment to run. Either with some help or even automatically.
This could be a use-case for multiple machines running the same scripts on different hardware accelerated chipsets.
start
can't depend on these tasks as they are ambiguous so you would have to define a start per env and then select that env. So this doesn't work, if you wantstart
fromdefault
buttrain-model
fromcuda
:It would be great to have some sort of auto selection logic. Like checking which envs would be able to run on the current machine. And if that would not be enough let the user define which task it depends on.
E.g.:
task_name = { depends_on = ["cuda:train_model"] }
The text was updated successfully, but these errors were encountered: