1
0
mirror of https://github.com/newnius/YAO-scheduler.git synced 2025-06-08 14:51:55 +00:00
YAO-scheduler/src/group_models.go

12 lines
290 B
Go
Raw Normal View History

2020-05-24 13:08:07 +00:00
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"`
}