109 lines
3.9 KiB (Stored with Git LFS)
Python
109 lines
3.9 KiB (Stored with Git LFS)
Python
"""Configurations of RBE builds used with remote config."""
|
|
|
|
load("//third_party/toolchains/remote_config:rbe_config.bzl", "tensorflow_local_config", "tensorflow_rbe_config", "tensorflow_rbe_win_config")
|
|
|
|
def initialize_rbe_configs():
|
|
tensorflow_local_config(
|
|
name = "local_execution",
|
|
)
|
|
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu16.04-manylinux2010-py3",
|
|
os = "ubuntu16.04-manylinux2010",
|
|
python_versions = ["3"],
|
|
compiler = "",
|
|
)
|
|
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu16.04-py3-gcc7_manylinux2010-cuda10.0-cudnn7-tensorrt5.1",
|
|
compiler = "/dt7/usr/bin/gcc",
|
|
compiler_prefix = "/usr/bin",
|
|
cuda_version = "10.0",
|
|
cudnn_version = "7",
|
|
os = "ubuntu16.04-manylinux2010",
|
|
python_versions = ["3"],
|
|
tensorrt_install_path = "/usr",
|
|
tensorrt_version = "5.1",
|
|
)
|
|
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu16.04-gcc7_manylinux2010-cuda10.1-cudnn7-tensorrt6.0",
|
|
compiler = "/dt7/usr/bin/gcc",
|
|
compiler_prefix = "/usr/bin",
|
|
cuda_version = "10.1",
|
|
cudnn_version = "7",
|
|
os = "ubuntu16.04-manylinux2010-multipython",
|
|
python_versions = ["2.7", "3.5", "3.6", "3.7", "3.8"],
|
|
tensorrt_install_path = "/usr",
|
|
tensorrt_version = "6.0",
|
|
python_install_path = "/usr/local",
|
|
)
|
|
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu18.04-gcc7_manylinux2010-cuda10.1-cudnn7-tensorrt6.0",
|
|
compiler = "/dt7/usr/bin/gcc",
|
|
compiler_prefix = "/usr/bin",
|
|
cuda_version = "10.1",
|
|
cudnn_version = "7",
|
|
os = "ubuntu18.04-manylinux2010-multipython",
|
|
python_versions = ["2.7", "3.5", "3.6", "3.7", "3.8"],
|
|
tensorrt_install_path = "/usr",
|
|
tensorrt_version = "6.0",
|
|
python_install_path = "/usr/local",
|
|
)
|
|
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu18.04-gcc7_manylinux2010-cuda11.0-cudnn8-tensorrt7.1",
|
|
compiler = "/dt7/usr/bin/gcc",
|
|
compiler_prefix = "/usr/bin",
|
|
cuda_version = "11.0",
|
|
cudnn_version = "8",
|
|
os = "ubuntu18.04-manylinux2010-multipython",
|
|
python_versions = ["2.7", "3.5", "3.6", "3.7", "3.8"],
|
|
tensorrt_install_path = "/usr",
|
|
tensorrt_version = "7.1",
|
|
python_install_path = "/usr/local",
|
|
)
|
|
|
|
# TODO(klimek): Delete this once all users are migrated to a python-version
|
|
# independent configuration. In the future, use
|
|
# "ubuntu16.04-gcc7_manylinux2010-cuda10.1-cudnn7-tensorrt6.0" instead.
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu16.04-py3-gcc7_manylinux2010-cuda10.1-cudnn7-tensorrt6.0",
|
|
compiler = "/dt7/usr/bin/gcc",
|
|
compiler_prefix = "/usr/bin",
|
|
cuda_version = "10.1",
|
|
cudnn_version = "7",
|
|
os = "ubuntu16.04-manylinux2010",
|
|
python_versions = ["3"],
|
|
tensorrt_install_path = "/usr",
|
|
tensorrt_version = "6.0",
|
|
)
|
|
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu16.04-clang_manylinux2010-cuda10.1-cudnn7-tensorrt6.0",
|
|
compiler = "/clang_r42cab985fd95ba4f3f290e7bb26b93805edb447d/bin/clang",
|
|
cuda_version = "10.1",
|
|
cudnn_version = "7",
|
|
os = "ubuntu16.04-manylinux2010-multipython",
|
|
python_versions = ["2.7", "3.5", "3.6", "3.7", "3.8"],
|
|
tensorrt_install_path = "/usr",
|
|
tensorrt_version = "6.0",
|
|
sysroot = "/dt7",
|
|
python_install_path = "/usr/local",
|
|
)
|
|
|
|
tensorflow_rbe_config(
|
|
name = "ubuntu18.04-gcc7_manylinux2010-rocm",
|
|
compiler = "/dt7/usr/bin/gcc",
|
|
compiler_prefix = "/usr/bin",
|
|
rocm_version = "3.5", # Any version will do.
|
|
os = "ubuntu18.04-manylinux2010-multipython",
|
|
python_versions = ["2.7", "3.5", "3.6", "3.7", "3.8"],
|
|
python_install_path = "/usr/local",
|
|
)
|
|
|
|
tensorflow_rbe_win_config(
|
|
name = "windows_py37",
|
|
python_bin_path = "C:/Python37/python.exe",
|
|
)
|