Experimental internal CI changes
PiperOrigin-RevId: 317402932 Change-Id: Ibaef72f01e06f4518b85b21f82000599eed7e4bd
This commit is contained in:
parent
2c5e5a643c
commit
f51b649394
75
tensorflow/tools/ci_build/per_release/scripts/nonpip_gpu.sh
Normal file
75
tensorflow/tools/ci_build/per_release/scripts/nonpip_gpu.sh
Normal file
@ -0,0 +1,75 @@
|
||||
#!/bin/bash
|
||||
# Copyright 2019 The TensorFlow Authors. All Rights Reserved.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
# ==============================================================================
|
||||
set -e
|
||||
set -x
|
||||
|
||||
if [[ -n "${KOKORO_ARTIFACTS_DIR}" ]]; then
|
||||
cd "${KOKORO_ARTIFACTS_DIR}"
|
||||
ls
|
||||
source "$(find "${KOKORO_ARTIFACTS_DIR}" -name "common_google.sh")"
|
||||
cd git/gob-tensorflow
|
||||
|
||||
fi
|
||||
|
||||
if [[ -z "${TF_KOKORO_PY_VERSION}" ]]; then
|
||||
echo "You must set TF_KOKORO_PY_VERSION, e.g. '3.7', indicating the "
|
||||
echo "Python version to be used for this build."
|
||||
exit 2
|
||||
fi
|
||||
|
||||
source tensorflow/tools/ci_build/release/common.sh
|
||||
|
||||
install_ubuntu_16_pip_deps "pip${TF_KOKORO_PY_VERSION}"
|
||||
# Update bazel
|
||||
install_bazelisk
|
||||
|
||||
# Run configure.
|
||||
export TF_NEED_GCP=1
|
||||
export TF_NEED_HDFS=1
|
||||
export TF_NEED_S3=1
|
||||
export TF_NEED_CUDA=1
|
||||
export TF_CUDA_VERSION=10
|
||||
export TF_CUDNN_VERSION=7
|
||||
export TF_NEED_TENSORRT=1
|
||||
export TENSORRT_INSTALL_PATH=/usr/local/tensorrt
|
||||
export CC_OPT_FLAGS='-mavx'
|
||||
export PYTHON_BIN_PATH=$(which "python${TF_KOKORO_PY_VERSION}")
|
||||
export TF2_BEHAVIOR=1
|
||||
export PROJECT_NAME="tensorflow_gpu"
|
||||
export LD_LIBRARY_PATH="/usr/local/cuda:/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64:$TENSORRT_INSTALL_PATH/lib"
|
||||
export TF_CUDA_COMPUTE_CAPABILITIES=sm_35,sm_37,sm_52,sm_60,sm_61,compute_70
|
||||
|
||||
yes "" | "$PYTHON_BIN_PATH" configure.py
|
||||
|
||||
# Get the default test targets for bazel.
|
||||
source tensorflow/tools/ci_build/build_scripts/PRESUBMIT_BUILD_TARGETS.sh
|
||||
|
||||
# Exclude -no_oss_py36, for example
|
||||
tag_filters="gpu,requires-gpu,-no_gpu,-no_oss,-oss_serial,-no_oss_py${TF_KOKORO_PY_VERSION//.}"
|
||||
|
||||
set +e
|
||||
bazel test --config=cuda --config=opt \
|
||||
--crosstool_top=//third_party/toolchains/preconfig/ubuntu16.04/gcc7_manylinux2010-nvcc-cuda10.1:toolchain \
|
||||
--linkopt=-lrt \
|
||||
--action_env=TF2_BEHAVIOR="${TF2_BEHAVIOR}" \
|
||||
--test_lang_filters=py \
|
||||
--build_tag_filters=${tag_filters} \
|
||||
--test_tag_filters=${tag_filters} \
|
||||
--test_timeout="300,450,1200,3600" --local_test_jobs=4 \
|
||||
--test_output=errors --verbose_failures=true --keep_going \
|
||||
--run_under=//tensorflow/tools/ci_build/gpu_build:parallel_gpu_execute \
|
||||
-- ${DEFAULT_BAZEL_TARGETS} -//tensorflow/lite/...
|
||||
test_xml_summary_exit
|
Loading…
Reference in New Issue
Block a user