2023-11-29 11:00:37 -08:00
|
|
|
package gpu
|
|
|
|
|
|
|
|
// Beginning of an `ollama info` command
|
|
|
|
type GpuInfo struct {
|
|
|
|
Driver string `json:"driver,omitempty"`
|
2023-12-20 10:36:01 -08:00
|
|
|
Library string `json:"library,omitempty"`
|
2023-11-29 11:00:37 -08:00
|
|
|
TotalMemory uint64 `json:"total_memory,omitempty"`
|
|
|
|
FreeMemory uint64 `json:"free_memory,omitempty"`
|
|
|
|
|
|
|
|
// TODO add other useful attributes about the card here for discovery information
|
|
|
|
}
|