-
Notifications
You must be signed in to change notification settings - Fork 4
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
Allow billing of H100 GPUs #98
base: main
Are you sure you want to change the base?
Conversation
@@ -9,20 +9,23 @@ | |||
GPU_A100 = "NVIDIA-A100-40GB" | |||
GPU_A100_SXM4 = "NVIDIA-A100-SXM4-40GB" | |||
GPU_V100 = "Tesla-V100-PCIE-32GB" | |||
GPU_H100 = "???-H100-???-???" # TODO Confirm name of H100 in Openstack |
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.
@joachimweyl @naved001 @knikolla What will the name of the H100 resource be in Openstack?
GPU_UNKNOWN_TYPE = "GPU_UNKNOWN_TYPE" | ||
|
||
# GPU Resource - MIG Geometries | ||
# A100 Strategies | ||
MIG_1G_5GB = "nvidia.com/mig-1g.5gb" | ||
MIG_2G_10GB = "nvidia.com/mig-2g.10gb" | ||
MIG_3G_20GB = "nvidia.com/mig-3g.20gb" | ||
# TODO Will we allow MIG on H100s? |
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.
@joachimweyl @naved001 @knikolla Will we allow billing for H100 with MIG?
WHOLE_GPU = "nvidia.com/gpu" | ||
|
||
# SU Types | ||
SU_CPU = "OpenShift CPU" | ||
SU_A100_GPU = "OpenShift GPUA100" | ||
SU_A100_SXM4_GPU = "OpenShift GPUA100SXM4" | ||
SU_V100_GPU = "OpenShift GPUV100" | ||
SU_H100_GPU = "OpenShift GPUH100" # TODO Confirm name of H100 SU Name |
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.
@naved001 I already asked this somewhere. Will remove after confirmation of the SU name
Closes #97. There are a few questions to be answered below before I turn this into a PR.