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.
1 parent 6750bae commit 3e5886fCopy full SHA for 3e5886f
test/gpu/BUILD
@@ -84,8 +84,7 @@ go_test(
84
visibility = ["//:sandbox"],
85
deps = [
86
"//pkg/test/dockerutil",
87
- "//pkg/test/testutil",
88
- "@org_golang_x_sync//errgroup:go_default_library",
+ "//test/gpu/cuda",
89
],
90
)
91
test/gpu/cuda/BUILD
@@ -0,0 +1,18 @@
1
+load("//tools:defs.bzl", "go_library")
2
+
3
+package(
4
+ default_applicable_licenses = ["//:license"],
5
+ licenses = ["notice"],
6
+)
7
8
+go_library(
9
+ name = "cuda",
10
+ testonly = True,
11
+ srcs = ["cuda.go"],
12
+ visibility = ["//test/gpu:__subpackages__"],
13
+ deps = [
14
+ "//pkg/test/dockerutil",
15
+ "//pkg/test/testutil",
16
+ "@org_golang_x_sync//errgroup:go_default_library",
17
+ ],
18
0 commit comments