mirror of
https://github.com/newnius/YAO-scheduler.git
synced 2025-06-08 14:51:55 +00:00
12 lines
290 B
Go
12 lines
290 B
Go
|
package main
|
||
|
|
||
|
type Group struct {
|
||
|
Name string `json:"name"`
|
||
|
Weight int `json:"weight"`
|
||
|
Reserved bool `json:"reserved"`
|
||
|
NumGPU int `json:"quota_gpu"`
|
||
|
MemoryGPU int `json:"quota_gpu_mem"`
|
||
|
CPU int `json:"quota_cpu"`
|
||
|
Memory int `json:"quota_mem"`
|
||
|
}
|