inference: Supported on darwin/arm64 only
Signed-off-by: Dorin Geman <dorin.geman@docker.com>
This commit is contained in:
parent
2bbd26fdeb
commit
4c46f589d7
|
|
@ -7,6 +7,5 @@ import (
|
|||
// Supported returns whether or not the current host platform is supported for
|
||||
// inference operations. This support should expand over time.
|
||||
func Supported() bool {
|
||||
return (runtime.GOOS == "windows" && runtime.GOARCH == "amd64") ||
|
||||
(runtime.GOOS == "darwin" && runtime.GOARCH == "arm64")
|
||||
return runtime.GOOS == "darwin" && runtime.GOARCH == "arm64"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue