Problem description
Follow up for #6178
Having these platforms:
[workspace]
platforms = [
{ name = "cuda-win-64", platform = "win-64", cuda = "12"},
"win-64",
{ name = "cuda-linux-64", platform = "linux-64", cuda = "12" },
"linux-64",
]
It requires these definitions to be duplicated now:
[target.cuda-win-64.tasks]
test = "python test.py --cuda"
train = "python train.py --cuda"
[target.cuda-linux-64.tasks]
test = "python test.py --cuda"
train = "python train.py --cuda"
I feel we should make it possible to use a * wildcard:
[target."cuda-*".tasks]
test = "python test.py --cuda"
train = "python train.py --cuda"
Problem description
Follow up for #6178
Having these platforms:
It requires these definitions to be duplicated now:
I feel we should make it possible to use a
*wildcard: