Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sudo apt-get -qq install clang-7 clang++-7
# Bazel dependencies
sudo apt-get -qq install pkg-config zip zlib1g-dev unzip
# XLA build requires Bazel
wget https://github.com/bazelbuild/bazel/releases/download/0.24.1/bazel-0.24.1-installer-linux-x86_64.sh
wget https://github.com/bazelbuild/bazel/releases/download/1.1.0/bazel-1.1.0-installer-linux-x86_64.sh
chmod +x bazel-*.sh
sudo ./bazel-*.sh
BAZEL="$(which bazel)"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_torch_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ DEFAULT_PYTHON_VERSION=3.6
DEBIAN_FRONTEND=noninteractive

function install_bazel() {
local BAZEL_VERSION="0.24.1"
local BAZEL_VERSION="1.1.0"
local BAZEL_FILE="bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh"
sudo apt-get install -y pkg-config zip zlib1g-dev unzip
curl -L -O "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/${BAZEL_FILE}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def run(self):
]
include_dirs += [
third_party_path + '/tensorflow/bazel-tensorflow',
third_party_path + '/tensorflow/bazel-genfiles',
third_party_path + '/tensorflow/bazel-bin',
third_party_path +
'/tensorflow/bazel-tensorflow/external/protobuf_archive/src',
third_party_path +
Expand Down
2 changes: 1 addition & 1 deletion test/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ target_include_directories(
SYSTEM PUBLIC
"${SOURCE_DIR}/googletest/include"
"${TFDIR}/bazel-tensorflow"
"${TFDIR}/bazel-genfiles"
"${TFDIR}/bazel-bin"
"${TFDIR}/bazel-tensorflow/external/protobuf_archive/src"
"${TFDIR}/bazel-tensorflow/external/com_google_protobuf/src"
"${TFDIR}/bazel-tensorflow/external/eigen_archive"
Expand Down
2 changes: 1 addition & 1 deletion third_party/tensorflow
Submodule tensorflow updated 1247 files
4 changes: 2 additions & 2 deletions third_party/xla_client/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ cc_library(
"//tensorflow/compiler/xla:debug_options_flags",
"//tensorflow/compiler/xla:literal_util",
"//tensorflow/compiler/xla:shape_util",
"//tensorflow/compiler/xla:xla_proto",
"//tensorflow/compiler/xla:xla_proto_cc",
"//tensorflow/compiler/xla/client",
"//tensorflow/compiler/xla/client:global_data",
"//tensorflow/compiler/xla/client:xla_computation",
"//tensorflow/compiler/xla/rpc:grpc_stub",
"//tensorflow/compiler/xla/service:cpu_plugin",
"//tensorflow/compiler/xla/service:platform_util",
"//tensorflow/compiler/xrt:xrt_proto",
"//tensorflow/compiler/xrt:xrt_proto_cc",
"//tensorflow/compiler/xrt:xrt_server",
"//tensorflow/compiler/xrt/cc:xrt_ops",
"//tensorflow/core:core_cpu",
Expand Down