We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ffa8970 + 8259033 commit d0f46e2Copy full SHA for d0f46e2
pkg/accelerator/accelerator_stub.go
@@ -1,5 +1,5 @@
1
-//go:build !linux
2
-// +build !linux
+//go:build !linux && !windows
+// +build !linux,!windows
3
4
// Use and distribution licensed under the Apache license version 2.
5
//
pkg/accelerator/accelerator_windows.go
@@ -0,0 +1,11 @@
+// Use and distribution licensed under the Apache license version 2.
+//
+// See the COPYING file in the root project directory for full text.
+
6
+package accelerator
7
8
+func (i *Info) load() error {
9
+ i.Devices = []*AcceleratorDevice{}
10
+ return nil
11
+}
0 commit comments