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
Should we add a label system like Kubernetes's labels to Fromager? Labels could be used to provide metadata in package .yaml files. Users can add labels to packages and plugins can act upon the presence and value of a label.
Questions:
dict[str, str] or dict[str, typing.Any]?
labels in package settings? or should variants have labels, too?
global labels in settings.yaml?
Use case:
Declare that a package contains GPU specific code
# torch.yaml`labels:
gpu_specific: true
The text was updated successfully, but these errors were encountered:
Should we add a label system like Kubernetes's labels to Fromager? Labels could be used to provide metadata in package
.yaml
files. Users can add labels to packages and plugins can act upon the presence and value of a label.Questions:
dict[str, str]
ordict[str, typing.Any]
?settings.yaml
?Use case:
Declare that a package contains GPU specific code
The text was updated successfully, but these errors were encountered: