mirror of
https://github.com/tcsenpai/ollama.git
synced 2025-06-06 19:25:21 +00:00
11 lines
311 B
Go
11 lines
311 B
Go
package gpu
|
|
|
|
// Beginning of an `ollama info` command
|
|
type GpuInfo struct {
|
|
Driver string `json:"driver,omitempty"`
|
|
TotalMemory uint64 `json:"total_memory,omitempty"`
|
|
FreeMemory uint64 `json:"free_memory,omitempty"`
|
|
|
|
// TODO add other useful attributes about the card here for discovery information
|
|
}
|