-
Notifications
You must be signed in to change notification settings - Fork 439
[DRAFT]node-feature-rules: Add 0x2321 as CC-capable device #1798
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,6 +89,15 @@ spec: | |
| matchExpressions: | ||
| vendor: {op: In, value: ["10de"]} | ||
| device: {op: In, value: ["2322"]} | ||
| - name: "NVIDIA H100L 94GB" | ||
| labels: | ||
| "nvidia.com/gpu.H100L": "true" | ||
| "nvidia.com/gpu.family": "hopper" | ||
| matchFeatures: | ||
| - feature: pci.device | ||
| matchExpressions: | ||
| vendor: {op: In, value: ["10de"]} | ||
| device: {op: In, value: ["2321"]} | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ideally we won't add devices piece meal. Can "whitelist" : 0x23**, 0x2b**, GBXXX -- Blackwell, GBXXX -- Hopper. Some may need to be excluded via "blacklist" then: exclude 2b00 TA1090SA [THOR].
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. One thing to note is that
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By the way, we could do something like the following: |
||
| - name: "NVIDIA CC Enabled" | ||
| labels: | ||
| "nvidia.com/cc.capable": "true" | ||
|
|
@@ -104,4 +113,3 @@ spec: | |
| nvidia.com/gpu.family: {op: In, value: ["hopper"]} | ||
| tdx.enabled: {op: IsTrue} | ||
| {{- end }} | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -511,7 +511,9 @@ ccManager: | |
| imagePullSecrets: [] | ||
| env: | ||
| - name: CC_CAPABLE_DEVICE_IDS | ||
| value: "0x2339,0x2331,0x2330,0x2324,0x2322,0x233d" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As mentioned offline: The envvars from the values file should probably be removed so that a user can properly override them. The defaults should be specified in the
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you! Offline we had a discussion that the change were some of the dev defaults were removed in |
||
| # TODO: 0x233d does not seem to be listed in deployments\gpu-operator\templates\nodefeaturerules.yaml, or 0500_daemonset.yaml | ||
| # The value was at least added to assets\state-cc-manager\0500_daemonset.yaml in 094e28f5056cf5ebfcf5c0a6277672cdda2c9e08 (but later on removed) | ||
| value: "0x2339,0x2331,0x2330,0x2324,0x2322,0x2321,0x233d" | ||
| resources: {} | ||
|
|
||
| node-feature-discovery: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder where this CC_CAPABLE_DEVICE_IDS variable is being referenced.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here: https://github.com/NVIDIA/k8s-cc-manager/blob/45f968d36e9c4bc39e497bd87aa6f5265648d0dd/cmd/main.go#L113
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you! It looks like we may need a change in the k8s-cc-manager as well then. If we want to allow all
23and2bHopper/Blackwell GPUs, we may rather not want to pass a list of specific GPUs.