Home
last modified time | relevance | path

Searched +full:bazel +full:- +full:installer (Results 1 – 25 of 56) sorted by relevance

123

/external/tensorflow/tensorflow/tools/dockerfiles/partials/ubuntu/
Dbazel.partial.Dockerfile1 RUN apt-get update && apt-get install -y \
2 build-essential \
6 openjdk-8-jdk \
7 python3-dev \
11 RUN python3 -m pip --no-cache-dir install \
25 # Install bazel
27 RUN mkdir /bazel && \
28 …wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION…
29 …wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \
30 chmod +x /bazel/installer.sh && \
[all …]
/external/tensorflow/tensorflow/tools/dockerfiles/partials/onednn/centos/
Dbazel.partial.Dockerfile1 # Install bazel
3 RUN mkdir /bazel && \
4 …curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_V…
5 …curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENS…
6 bash /bazel/installer.sh && \
7 rm -f /bazel/installer.sh
/external/tensorflow/tensorflow/tools/dockerfiles/partials/onednn/ubuntu/
Dbazel.partial.Dockerfile1 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
4 # Install bazel
6 RUN mkdir /bazel && \
7 …curl -fSsL -o /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_V…
8 …curl -fSsL -o /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENS…
9 bash /bazel/installer.sh && \
10 rm -f /bazel/installer.sh
/external/tensorflow/tensorflow/tools/ci_build/install/
Dinstall_bazel.sh8 # http://www.apache.org/licenses/LICENSE-2.0
17 # Select bazel version.
21 local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')
27 set -e
29 # Install bazel.
30 mkdir -p /bazel
31 cd /bazel
32 if [[ ! -f "bazel-$BAZEL_VERSION-installer-linux-x86_64.sh" ]]; then
33 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VE…
35 chmod +x /bazel/bazel-*.sh
[all …]
/external/tensorflow/tensorflow/tools/dockerfiles/dockerfiles/
Ddevel-cpu.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
26 RUN apt-get update && apt-get install -y --no-install-recommends \
27 build-essential \
30 libcurl3-dev \
31 libfreetype6-dev \
32 libhdf5-serial-dev \
33 libzmq3-dev \
34 pkg-config \
36 software-properties-common \
40 zlib1g-dev \
[all …]
Ddevel-cpu-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
26 RUN apt-get update && apt-get install -y --no-install-recommends \
27 build-essential \
30 libcurl3-dev \
31 libfreetype6-dev \
32 libhdf5-serial-dev \
33 libzmq3-dev \
34 pkg-config \
36 software-properties-common \
40 zlib1g-dev \
[all …]
Ddevel-gpu.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
26 FROM nvidia/cuda${ARCH:+-$ARCH}:${CUDA}-base-ubuntu${UBUNTU_VERSION} as base
31 ARG CUDNN=8.0.4.30-1
34 ARG LIBNVINFER=7.1.3-1
38 SHELL ["/bin/bash", "-c"]
39 RUN apt-get update && apt-get install -y --no-install-recommends \
40 build-essential \
41 cuda-command-line-tools-${CUDA/./-} \
42 libcublas-${CUDA/./-} \
43 libcublas-dev-${CUDA/./-} \
[all …]
/external/grpc-grpc/tools/internal_ci/linux/
Dgrpc_build_submodule_at_head.sh8 # http://www.apache.org/licenses/LICENSE-2.0
18 set -ex
26 (cd third_party/$RUN_TESTS_FLAGS && git fetch --all && git checkout origin/master)
31 # Upgrade bazel.
32 # make_grpcio_tools.py requires bazel >=0.13.1 to run (Kokoro workers only have bazel 0.9)
33 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/0.13.1/bazel-0.13.1-installer-
34 chmod +x ./bazel-0.13.1-installer-linux-x86_64.sh
35 ./bazel-0.13.1-installer-linux-x86_64.sh --user
36 rm -f ./bazel-0.13.1-installer-linux-x86_64.sh
43 git -c user.name='foo' -c user.email='foo@google.com' commit -a -m 'Update submodule'
[all …]
/external/tensorflow/tensorflow/tools/dockerfiles/dockerfiles/onednn/
Dubuntu-20.04-devel.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
29 build-essential \
32 libcurl3-dev \
33 libfreetype6-dev \
34 libhdf5-serial-dev \
35 libzmq3-dev \
36 pkg-config \
38 software-properties-common \
42 zlib1g-dev \
[all …]
Dubuntu-18.04-devel.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
29 build-essential \
32 libcurl3-dev \
33 libfreetype6-dev \
34 libhdf5-serial-dev \
35 libzmq3-dev \
36 pkg-config \
38 software-properties-common \
42 zlib1g-dev \
[all …]
Dcentos-8-devel.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 # Enable both PowerTools and EPEL otherwise some packages like hdf5-devel fail to install
29 RUN dnf install -y 'dnf-command(config-manager)' && \
30 dnf config-manager --set-enabled powertools && \
31 …dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-"${CENTOS_VERSION}".noarc…
34 RUN yum update -y && \
35 yum install -y \
37 freetype-devel \
39 gcc-c++ \
41 hdf5-devel \
[all …]
Dcentos-7-devel.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
26 # Enable both PowerTools and EPEL otherwise some packages like hdf5-devel fail to install
28 yum update -y && \
29 yum install -y epel-release
31 RUN yum update -y && \
32 yum install -y \
34 freetype-devel \
36 gcc-c++ \
38 hdf5-devel \
39 java-1.8.0-openjdk \
[all …]
Dubuntu-16.04-devel.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
29 build-essential \
32 libcurl3-dev \
33 libfreetype6-dev \
34 libhdf5-serial-dev \
35 libzmq3-dev \
36 pkg-config \
38 software-properties-common \
42 zlib1g-dev \
[all …]
Dubuntu-20.04-devel-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
29 build-essential \
32 libcurl3-dev \
33 libfreetype6-dev \
34 libhdf5-serial-dev \
35 libzmq3-dev \
36 pkg-config \
38 software-properties-common \
42 zlib1g-dev \
[all …]
Dubuntu-18.04-devel-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
29 build-essential \
32 libcurl3-dev \
33 libfreetype6-dev \
34 libhdf5-serial-dev \
35 libzmq3-dev \
36 pkg-config \
38 software-properties-common \
42 zlib1g-dev \
[all …]
Dcentos-8-devel-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 # Enable both PowerTools and EPEL otherwise some packages like hdf5-devel fail to install
29 RUN dnf install -y 'dnf-command(config-manager)' && \
30 dnf config-manager --set-enabled powertools && \
31 …dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-"${CENTOS_VERSION}".noarc…
34 RUN yum update -y && \
35 yum install -y \
37 freetype-devel \
39 gcc-c++ \
41 hdf5-devel \
[all …]
Dcentos-7-devel-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
26 # Enable both PowerTools and EPEL otherwise some packages like hdf5-devel fail to install
28 yum update -y && \
29 yum install -y epel-release
31 RUN yum update -y && \
32 yum install -y \
34 freetype-devel \
36 gcc-c++ \
38 hdf5-devel \
39 java-1.8.0-openjdk \
[all …]
Dubuntu-16.04-devel-jupyter.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
29 build-essential \
32 libcurl3-dev \
33 libfreetype6-dev \
34 libhdf5-serial-dev \
35 libzmq3-dev \
36 pkg-config \
38 software-properties-common \
42 zlib1g-dev \
[all …]
Dubuntu-20.04-devel-mpi-horovod.Dockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
28 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \
29 build-essential \
32 libcurl3-dev \
33 libfreetype6-dev \
34 libhdf5-serial-dev \
35 libzmq3-dev \
36 pkg-config \
38 software-properties-common \
42 zlib1g-dev \
[all …]
/external/perfetto/infra/ci/sandbox/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
21 RUN set -ex; \
23 echo deb http://deb.debian.org/debian buster-backports main > \
25 apt-get update; \
26 apt-get -y install python3 python3-pip git curl sudo lz4 tar ccache tini \
27 libpulse0 libgl1 libxml2 libc6-dev-i386 libtinfo5 \
28 gnupg2 pkg-config zip g++ zlib1g-dev unzip \
29 python3-distutils clang-8 gcc-7 g++-7; \
30 update-alternatives --install /usr/bin/python python /usr/bin/python3.7 1; \
31 gcc-7 --version; \
[all …]
/external/tensorflow/tensorflow/tools/ci_build/linux/mkl/
DDockerfile.devel-mkl30 # Upgrade Bazel version if argument is passed
32 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VE…
33 chmod +x bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \
34 ./bazel-$BAZEL_VERSION-installer-linux-x86_64.sh && \
35 rm -rf bazel-$BAZEL_VERSION-installer-linux-x86_64.sh; \
38 # Upgrade gcc-8 if argument is passed
40 add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
41 apt-get update && \
42 apt-get install gcc-8 g++-8 -y && \
43 …update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80 --slave /usr/bin/g++ g++ /usr/bin…
[all …]
/external/tflite-support/tensorflow_lite_support/tools/ci_build/
Dcommon.sh8 # http://www.apache.org/licenses/LICENSE-2.0
19 # TODO(b/158448780): Guard bazel version with IfChangeThenChange.
27 if [[ $? -ne 0 ]]; then
45 set -x
48 # TODO(b/158448780): Guard bazel installation with IfChangeThenChange.
50 mkdir -p /tmpfs/bazel_output
54 # Downloads bazelisk to ~/bin as `bazel`.
57 case "$(uname -s)" in
58 Darwin) local name=bazelisk-darwin-amd64 ;;
59 Linux) local name=bazelisk-linux-amd64 ;;
[all …]
/external/llvm-project/libcxx/utils/google-benchmark/
D.travis.yml7 - /usr/local/bin:$PATH
11 - compiler: gcc
15 - lcov
17 - compiler: gcc
19 - compiler: gcc
21 - compiler: gcc
25 - g++-multilib
27 - compiler: gcc
31 - g++-multilib
33 - compiler: gcc
[all …]
/external/libcxx/utils/google-benchmark/
D.travis.yml7 - /usr/local/bin:$PATH
11 - compiler: gcc
15 - lcov
17 - compiler: gcc
19 - compiler: gcc
21 - compiler: gcc
25 - g++-multilib
27 - compiler: gcc
31 - g++-multilib
33 - compiler: gcc
[all …]
/external/google-benchmark/
D.travis.yml7 - compiler: gcc
11 - lcov
13 - compiler: gcc
15 - compiler: gcc
17 - compiler: gcc
21 - g++-multilib
22 - libc6:i386
24 - COMPILER=g++
25 - C_COMPILER=gcc
26 - BUILD_TYPE=Debug
[all …]

123