Skip to content

Commit

Permalink
GPU-limits proto message (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
Munklinde96 authored Oct 24, 2023
1 parent f75bade commit c9dde0f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions proto/rig/api/v1/capsule/rollout.proto
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ message ContainerSettings {
message Resources {
ResourceList requests = 1;
ResourceList limits = 2;
GpuLimits gpu_limits = 3;
}

message ResourceList {
Expand All @@ -97,6 +98,15 @@ message ResourceList {
uint64 memory_bytes = 2;
}

message GpuLimits {
// gpu resource type - fx. nvidia.com/gpu
string type = 1;
// number of gpus
uint32 count = 2;
}



message Network {
repeated Interface interfaces = 1;
}
Expand Down

0 comments on commit c9dde0f

Please sign in to comment.