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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 60 additions and 7 deletions

View file

@ -305,6 +305,10 @@ func (b *testBackend) NewContext() ml.Context {
return &testContext{}
}
func (b *testBackend) SystemInfo() string {
return "not implemented"
}
type testContext struct{}
func (c *testContext) Zeros(dtype ml.DType, shape ...int) ml.Tensor {