You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.5 KiB
76 lines
2.5 KiB
licenses(["restricted"])
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//third_party/toolchains/preconfig/generate:containers.bzl", "container_digests")
|
|
|
|
# Remote build platforms.
|
|
# Each of the platform rules here provide a platform definition that is bound to a docker image.
|
|
# The result of the skylark configuration is checked into
|
|
# //tensorflow/third_party/toolchains/preconfig.
|
|
|
|
# Built with //tensorflow/tools/ci_build/Dockerfile.rbe.cpu.
|
|
platform(
|
|
name = "rbe_ubuntu16.04",
|
|
constraint_values = [
|
|
"@bazel_tools//platforms:x86_64",
|
|
"@bazel_tools//platforms:linux",
|
|
],
|
|
exec_properties = {
|
|
"container-image": "docker://gcr.io/tensorflow-testing/nosla-ubuntu16.04@%s" % container_digests["ubuntu16.04"],
|
|
"Pool": "default",
|
|
},
|
|
)
|
|
|
|
# Built with //tensorflow/tools/ci_build/Dockerfile.rbe.cpu-centos6.
|
|
platform(
|
|
name = "rbe_centos6",
|
|
constraint_values = [
|
|
"@bazel_tools//platforms:x86_64",
|
|
"@bazel_tools//platforms:linux",
|
|
],
|
|
exec_properties = {
|
|
"container-image": "docker://gcr.io/tensorflow-testing/nosla-centos6@%s" % container_digests["centos6"],
|
|
"Pool": "default",
|
|
},
|
|
)
|
|
|
|
# Built with //tensorflow/tools/ci_build/Dockerfile.rbe.cuda10.0-cudnn7-ubuntu14.04.
|
|
platform(
|
|
name = "rbe_cuda10.0-cudnn7-ubuntu14.04",
|
|
constraint_values = [
|
|
"@bazel_tools//platforms:x86_64",
|
|
"@bazel_tools//platforms:linux",
|
|
],
|
|
exec_properties = {
|
|
"container-image": "docker://gcr.io/tensorflow-testing/nosla-cuda10.0-cudnn7-ubuntu14.04@%s" % container_digests["cuda10.0-cudnn7-ubuntu14.04"],
|
|
"Pool": "default",
|
|
},
|
|
)
|
|
|
|
# Built with //tensorflow/tools/ci_build/Dockerfile.rbe.cuda10.0-cudnn7-centos6.
|
|
platform(
|
|
name = "rbe_cuda10.0-cudnn7-centos6",
|
|
constraint_values = [
|
|
"@bazel_tools//platforms:x86_64",
|
|
"@bazel_tools//platforms:linux",
|
|
],
|
|
exec_properties = {
|
|
"container-image": "docker://gcr.io/tensorflow-testing/nosla-cuda10.0-cudnn7-centos6@%s" % container_digests["cuda10.0-cudnn7-centos6"],
|
|
"Pool": "default",
|
|
},
|
|
)
|
|
|
|
# Built with //tensorflow/tools/ci_build/Dockerfile.rbe.ubuntu16.04-manylinux2010.
|
|
platform(
|
|
name = "rbe_ubuntu16.04-manylinux2010",
|
|
constraint_values = [
|
|
"@bazel_tools//platforms:x86_64",
|
|
"@bazel_tools//platforms:linux",
|
|
],
|
|
exec_properties = {
|
|
"container-image": "docker://gcr.io/tensorflow-testing/nosla-ubuntu16.04-manylinux2010@%s" % container_digests["ubuntu16.04-manylinux2010"],
|
|
"Pool": "default",
|
|
},
|
|
)
|