Wire up system info log for new engine (#9123)

This commit is contained in:
Daniel Hiltgen
2025-02-14 15:55:33 -08:00
committed by GitHub
parent 010313bb63
commit df2680b4b9
4 changed files with 60 additions and 7 deletions

View File

@@ -23,6 +23,7 @@ type Backend interface {
Config() Config
Get(name string) Tensor
NewContext() Context
SystemInfo() string
}
var backends = make(map[string]func(*os.File) (Backend, error))