Bump TF's minimum Bazel version to 3.7.2.
Bug fixed: https://github.com/bazelbuild/bazel/issues/3828 We need this because we are working on integrating TF with a different project that should remove the breakages caused by LLVM integration PiperOrigin-RevId: 348886284 Change-Id: Iad539321f1ba7590e4ee77b93d67eb5401d9fec8
This commit is contained in:
parent
05303d0dce
commit
3e9fccb0cb
.bazelversionconfigure.py
tensorflow
compiler/aot/tests
tools
ci_build
dockerfiles
dockerfiles
arm64v8
devel-cpu-jupyter.Dockerfiledevel-cpu.Dockerfiledevel-gpu-jupyter.Dockerfiledevel-gpu.Dockerfileonednn
centos-8-devel-jupyter.Dockerfilecentos-8-devel-mpi-horovod-jupyter.Dockerfilecentos-8-devel-mpi-horovod.Dockerfilecentos-8-devel-mpich-horovod-jupyter.Dockerfilecentos-8-devel-mpich-horovod.Dockerfilecentos-8-devel.Dockerfileubuntu-16.04-devel-jupyter.Dockerfileubuntu-16.04-devel-mpi-horovod-jupyter.Dockerfileubuntu-16.04-devel-mpi-horovod.Dockerfileubuntu-16.04-devel-mpich-horovod-jupyter.Dockerfileubuntu-16.04-devel-mpich-horovod.Dockerfileubuntu-16.04-devel.Dockerfileubuntu-18.04-devel-jupyter.Dockerfileubuntu-18.04-devel-mpi-horovod-jupyter.Dockerfileubuntu-18.04-devel-mpi-horovod.Dockerfileubuntu-18.04-devel-mpich-horovod-jupyter.Dockerfileubuntu-18.04-devel-mpich-horovod.Dockerfileubuntu-18.04-devel.Dockerfileubuntu-20.04-devel-jupyter.Dockerfileubuntu-20.04-devel-mpi-horovod-jupyter.Dockerfileubuntu-20.04-devel-mpi-horovod.Dockerfileubuntu-20.04-devel-mpich-horovod-jupyter.Dockerfileubuntu-20.04-devel.Dockerfile
ppc64le
partials
pip_package
@ -1 +1 @@
|
|||||||
3.1.0
|
3.7.2
|
||||||
|
@ -46,7 +46,7 @@ _TF_BAZELRC_FILENAME = '.tf_configure.bazelrc'
|
|||||||
_TF_WORKSPACE_ROOT = ''
|
_TF_WORKSPACE_ROOT = ''
|
||||||
_TF_BAZELRC = ''
|
_TF_BAZELRC = ''
|
||||||
_TF_CURRENT_BAZEL_VERSION = None
|
_TF_CURRENT_BAZEL_VERSION = None
|
||||||
_TF_MIN_BAZEL_VERSION = '3.1.0'
|
_TF_MIN_BAZEL_VERSION = '3.7.2'
|
||||||
_TF_MAX_BAZEL_VERSION = '3.99.0'
|
_TF_MAX_BAZEL_VERSION = '3.99.0'
|
||||||
|
|
||||||
NCCL_LIB_PATHS = [
|
NCCL_LIB_PATHS = [
|
||||||
|
@ -61,6 +61,7 @@ test_suite(
|
|||||||
":test_graph_tfvariable_test",
|
":test_graph_tfvariable_test",
|
||||||
":tfcompile_test",
|
":tfcompile_test",
|
||||||
],
|
],
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
py_binary(
|
py_binary(
|
||||||
|
@ -377,6 +377,7 @@ do_external_licenses_check(){
|
|||||||
# Denylist
|
# Denylist
|
||||||
echo ${MISSING_LICENSES_FILE}
|
echo ${MISSING_LICENSES_FILE}
|
||||||
grep \
|
grep \
|
||||||
|
-e "@bazel_tools//platforms" \
|
||||||
-e "@bazel_tools//third_party/" \
|
-e "@bazel_tools//third_party/" \
|
||||||
-e "@bazel_tools//tools" \
|
-e "@bazel_tools//tools" \
|
||||||
-e "@local" \
|
-e "@local" \
|
||||||
@ -395,6 +396,7 @@ do_external_licenses_check(){
|
|||||||
-e "//third_party/mkl" \
|
-e "//third_party/mkl" \
|
||||||
-e "//third_party/mkl_dnn" \
|
-e "//third_party/mkl_dnn" \
|
||||||
-e "@bazel_tools//src" \
|
-e "@bazel_tools//src" \
|
||||||
|
-e "@bazel_tools//platforms" \
|
||||||
-e "@bazel_tools//tools/" \
|
-e "@bazel_tools//tools/" \
|
||||||
-e "@org_tensorflow//tensorflow" \
|
-e "@org_tensorflow//tensorflow" \
|
||||||
-e "@com_google_absl//" \
|
-e "@com_google_absl//" \
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
# Select bazel version.
|
# Select bazel version.
|
||||||
BAZEL_VERSION="3.1.0"
|
BAZEL_VERSION="3.7.2"
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')
|
local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
# It will compile bazel from source and install it in /usr/local/bin
|
# It will compile bazel from source and install it in /usr/local/bin
|
||||||
|
|
||||||
# Select bazel version.
|
# Select bazel version.
|
||||||
BAZEL_VERSION="3.1.0"
|
BAZEL_VERSION="3.7.2"
|
||||||
|
|
||||||
set +e
|
set +e
|
||||||
local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')
|
local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
# Keep in sync with tensorflow_estimator and configure.py.
|
# Keep in sync with tensorflow_estimator and configure.py.
|
||||||
# LINT.IfChange
|
# LINT.IfChange
|
||||||
LATEST_BAZEL_VERSION=3.1.0
|
LATEST_BAZEL_VERSION=3.7.2
|
||||||
# LINT.ThenChange(
|
# LINT.ThenChange(
|
||||||
# //tensorflow/opensource_only/configure.py,
|
# //tensorflow/opensource_only/configure.py,
|
||||||
# //tensorflow_estimator/google/kokoro/common.sh,
|
# //tensorflow_estimator/google/kokoro/common.sh,
|
||||||
|
@ -71,7 +71,7 @@ SET PATH=%CUDNN_INSTALL_PATH%\bin;%PATH%
|
|||||||
@REM Setup Bazel
|
@REM Setup Bazel
|
||||||
@REM
|
@REM
|
||||||
:: Download Bazel from github and make sure its found in PATH.
|
:: Download Bazel from github and make sure its found in PATH.
|
||||||
SET BAZEL_VERSION=3.1.0
|
SET BAZEL_VERSION=3.7.2
|
||||||
md C:\tools\bazel\
|
md C:\tools\bazel\
|
||||||
wget -q https://github.com/bazelbuild/bazel/releases/download/%BAZEL_VERSION%/bazel-%BAZEL_VERSION%-windows-x86_64.exe -O C:/tools/bazel/bazel.exe
|
wget -q https://github.com/bazelbuild/bazel/releases/download/%BAZEL_VERSION%/bazel-%BAZEL_VERSION%-windows-x86_64.exe -O C:/tools/bazel/bazel.exe
|
||||||
SET PATH=C:\tools\bazel;%PATH%
|
SET PATH=C:\tools\bazel;%PATH%
|
||||||
|
@ -96,7 +96,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -96,7 +96,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -93,7 +93,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -93,7 +93,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -132,7 +132,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -132,7 +132,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -82,7 +82,7 @@ RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
|
|||||||
ln -sf $(which ${PYTHON}) /usr/bin/python
|
ln -sf $(which ${PYTHON}) /usr/bin/python
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -82,7 +82,7 @@ RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
|
|||||||
ln -sf $(which ${PYTHON}) /usr/bin/python
|
ln -sf $(which ${PYTHON}) /usr/bin/python
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -82,7 +82,7 @@ RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
|
|||||||
ln -sf $(which ${PYTHON}) /usr/bin/python
|
ln -sf $(which ${PYTHON}) /usr/bin/python
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -82,7 +82,7 @@ RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
|
|||||||
ln -sf $(which ${PYTHON}) /usr/bin/python
|
ln -sf $(which ${PYTHON}) /usr/bin/python
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -82,7 +82,7 @@ RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
|
|||||||
ln -sf $(which ${PYTHON}) /usr/bin/python
|
ln -sf $(which ${PYTHON}) /usr/bin/python
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -82,7 +82,7 @@ RUN ln -sf $(which ${PYTHON}) /usr/local/bin/python && \
|
|||||||
ln -sf $(which ${PYTHON}) /usr/bin/python
|
ln -sf $(which ${PYTHON}) /usr/bin/python
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -73,7 +73,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -83,7 +83,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -83,7 +83,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -83,7 +83,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -83,7 +83,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -83,7 +83,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -91,7 +91,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -91,7 +91,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -130,7 +130,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -130,7 +130,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -2,7 +2,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
|
|||||||
curl
|
curl
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -23,7 +23,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Install bazel
|
# Install bazel
|
||||||
ARG BAZEL_VERSION=3.1.0
|
ARG BAZEL_VERSION=3.7.2
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh" && \
|
||||||
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
|
||||||
|
@ -26,7 +26,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -21,7 +21,7 @@ RUN python3 -m pip --no-cache-dir install \
|
|||||||
enum34
|
enum34
|
||||||
|
|
||||||
# Build and install bazel
|
# Build and install bazel
|
||||||
ENV BAZEL_VERSION 3.1.0
|
ENV BAZEL_VERSION 3.7.2
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
RUN mkdir /bazel && \
|
RUN mkdir /bazel && \
|
||||||
cd /bazel && \
|
cd /bazel && \
|
||||||
|
@ -78,10 +78,12 @@ DEPENDENCY_DENYLIST = [
|
|||||||
"//tensorflow/cc/saved_model:saved_model_half_plus_two",
|
"//tensorflow/cc/saved_model:saved_model_half_plus_two",
|
||||||
"//tensorflow:no_tensorflow_py_deps",
|
"//tensorflow:no_tensorflow_py_deps",
|
||||||
"//tensorflow/tools/pip_package:win_pip_package_marker",
|
"//tensorflow/tools/pip_package:win_pip_package_marker",
|
||||||
|
"//tensorflow/python:mixed_precision",
|
||||||
"//tensorflow/python:test_ops_2",
|
"//tensorflow/python:test_ops_2",
|
||||||
"//tensorflow/python:tf_optimizer",
|
"//tensorflow/python:tf_optimizer",
|
||||||
"//tensorflow/python:compare_test_proto_py",
|
"//tensorflow/python:compare_test_proto_py",
|
||||||
"//tensorflow/core:image_testdata",
|
"//tensorflow/core:image_testdata",
|
||||||
|
"//tensorflow/core/lib/lmdb:lmdb_testdata",
|
||||||
"//tensorflow/core/lib/lmdb/testdata:lmdb_testdata",
|
"//tensorflow/core/lib/lmdb/testdata:lmdb_testdata",
|
||||||
"//tensorflow/core/kernels/cloud:bigquery_reader_ops",
|
"//tensorflow/core/kernels/cloud:bigquery_reader_ops",
|
||||||
"//tensorflow/python/debug:grpc_tensorflow_server.par",
|
"//tensorflow/python/debug:grpc_tensorflow_server.par",
|
||||||
|
Loading…
Reference in New Issue
Block a user