18 lines
359 B
Go
18 lines
359 B
Go
// +build !linux,!windows
|
|
// Use and distribution licensed under the Apache license version 2.
|
|
//
|
|
// See the COPYING file in the root project directory for full text.
|
|
//
|
|
|
|
package ghw
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (ctx *context) gpuFillInfo(info *GPUInfo) error {
|
|
return errors.New("gpuFillInfo not implemented on " + runtime.GOOS)
|
|
}
|