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
Add requests on GPU resources computation ,to enable more scheduling strategies and more utilization on GPU computation
2. Steps to reproduce the issue
apiVersion: v1kind: Podmetadata:
name: gpu-podspec:
containers:
- name: ubuntu-containerimage: ubuntu:18.04command: ["bash", "-c", "sleep 86400"]resources:
requests:
nvidia.com/gpucores: 20# Each vGPU uses 20% of the entire GPU (Optional,Integer)limits:
nvidia.com/gpu: 1# requesting 1 vGPUsnvidia.com/gpumem: 3000# Each vGPU contains 3000m device memory (Optional,Integer)nvidia.com/gpucores: 25# Each vGPU uses 25% of the entire GPU (Optional,Integer)
Only scheduler codes are needed to be edit, and it will be compatible to the HAMi DRA.
Attention: This feature will leads to QoS level change, original Pods with guaranteed QoS level will not be guaranteed with computation resource once any Pod with requests were scheduled on the same GPU. And if this feature is disabled, nothing will be changed.
3. Information to attach (optional if deemed irrelevant)
The text was updated successfully, but these errors were encountered:
1. Issue or feature description
Add
requests
on GPU resources computation ,to enable more scheduling strategies and more utilization on GPU computation2. Steps to reproduce the issue
Only scheduler codes are needed to be edit, and it will be compatible to the HAMi DRA.
Attention: This feature will leads to QoS level change, original Pods with
guaranteed
QoS level will not beguaranteed
with computation resource once any Pod withrequests
were scheduled on the same GPU. And if this feature is disabled, nothing will be changed.3. Information to attach (optional if deemed irrelevant)
The text was updated successfully, but these errors were encountered: