Searched +full:bazel +full:- +full:installer (Results 1 – 15 of 15) sorted by relevance
1 RUN apt-get update && apt-get install -y \2 build-essential \6 openjdk-8-jdk \7 ${PYTHON}-dev \10 RUN ${PIP} --no-cache-dir install \21 && test "${USE_PYTHON_3_NOT_2}" -eq 1 && true || ${PIP} --no-cache-dir install \24 # Install bazel26 RUN mkdir /bazel && \27 …wget -O /bazel/installer.sh "https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION…28 …wget -O /bazel/LICENSE.txt "https://raw.githubusercontent.com/bazelbuild/bazel/master/LICENSE" && \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.017 # Select bazel version.21 local_bazel_ver=$(bazel version 2>&1 | grep -i label | awk '{print $3}')27 set -e29 # Install bazel.30 mkdir -p /bazel31 cd /bazel32 if [[ ! -f "bazel-$BAZEL_VERSION-installer-linux-x86_64.sh" ]]; then33 …curl -fSsL -O https://github.com/bazelbuild/bazel/releases/download/$BAZEL_VERSION/bazel-$BAZEL_VE…35 chmod +x /bazel/bazel-*.sh[all …]
7 # http://www.apache.org/licenses/LICENSE-2.026 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 \39 zlib1g-dev \[all …]
7 # http://www.apache.org/licenses/LICENSE-2.026 FROM nvidia/cuda${ARCH:+-$ARCH}:${CUDA}-base-ubuntu${UBUNTU_VERSION} as base31 ARG CUDNN=7.4.1.5-136 SHELL ["/bin/bash", "-c"]37 RUN apt-get update && apt-get install -y --no-install-recommends \38 build-essential \39 cuda-command-line-tools-${CUDA/./-} \40 cuda-cublas-dev-${CUDA/./-} \41 cuda-cudart-dev-${CUDA/./-} \42 cuda-cufft-dev-${CUDA/./-} \[all …]
8 # http://www.apache.org/licenses/LICENSE-2.018 set -ex26 (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.sh35 ./bazel-0.13.1-installer-linux-x86_64.sh --user36 rm -f ./bazel-0.13.1-installer-linux-x86_64.sh43 git -c user.name='foo' -c user.email='foo@google.com' commit -a -m 'Update submodule'[all …]
7 - /usr/local/bin:$PATH11 - compiler: gcc15 - lcov17 - compiler: gcc19 - compiler: gcc21 - compiler: gcc25 - g++-multilib27 - compiler: gcc31 - g++-multilib33 - compiler: gcc[all …]
5 RUN apt-get update && apt-get install -y --no-install-recommends \6 build-essential \9 libcurl3-dev \10 libfreetype6-dev \11 libhdf5-serial-dev \12 libpng-dev \13 libzmq3-dev \14 pkg-config \15 python-dev \17 software-properties-common \[all …]
12 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \14 ${PYTHON}-dev \15 ${PYTHON}-pip \16 ${PYTHON}-setuptools \17 ${PYTHON}-wheel \18 build-essential \21 libcurl3-dev \22 libfreetype6-dev \23 libhdf5-serial-dev \24 libpng-dev \[all …]
1 FROM nvidia/cuda:9.0-base-ubuntu16.045 RUN apt-get update && apt-get install -y --no-install-recommends \6 build-essential \7 cuda-command-line-tools-9-0 \8 cuda-cublas-dev-9-0 \9 cuda-cudart-dev-9-0 \10 cuda-cufft-dev-9-0 \11 cuda-curand-dev-9-0 \12 cuda-cusolver-dev-9-0 \13 cuda-cusparse-dev-9-0 \[all …]
13 RUN apt-get update && apt-get install -y --no-install-recommends --fix-missing \15 ${PYTHON}-dev \16 ${PYTHON}-pip \17 ${PYTHON}-setuptools \18 ${PYTHON}-wheel \19 build-essential \22 libcurl3-dev \23 libfreetype6-dev \24 libhdf5-serial-dev \25 libnuma-dev \[all …]
7 - [Getting Started](#getting-started)8 - [Getting Started on a Microcontroller](#getting-started-on-a-microcontroller)9 - [Calculating the Input to the Neural Network](#calculating-the-input-to-the-neural-network)10 - [Creating Your Own Model](#creating-your-own-model)23 make -f tensorflow/lite/experimental/micro/tools/make/Makefile test_micro_speech35 brew: brew install caskroom/cask/gcc-arm-embedded*38 make -f tensorflow/lite/experimental/micro/tools/make/Makefile TARGET=bluepill test_micro_speech44 arm-none-eabi-objcopy \45 tensorflow/lite/experimental/micro/tools/make/gen/bluepill_cortex-m3/bin/micro_speech_test \46 tensorflow/lite/experimental/micro/tools/make/gen/bluepill_cortex-m3/bin/micro_speech_test.bin \[all …]
7 # http://www.apache.org/licenses/LICENSE-2.029 # pylint: disable=g-import-not-at-top34 # pylint: enable=g-import-not-at-top56 'lib64/', 'lib/powerpc64le-linux-gnu/', 'lib/x86_64-linux-gnu/', ''59 # List of files to be configured for using Bazel on Apple platforms.66 _DEFAULT_TENSORRT_PATH_LINUX = '/usr/lib/powerpc64le-linux-gnu/'68 _DEFAULT_TENSORRT_PATH_LINUX = '/usr/lib/%s-linux-gnu' % platform.machine()100 answer = input(question) # pylint: disable=bad-builtin107 """Force symlink, equivalent of 'ln -sf'.144 write_to_bazelrc('build --action_env %s="%s"' % (var_name, str(var)))[all …]