mirror of https://github.com/tensorflow/addons.git
84 lines
3.0 KiB
Bash
84 lines
3.0 KiB
Bash
#!/usr/bin/env 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.
|
|
# ==============================================================================
|
|
#
|
|
#
|
|
# A script to run multiple GPU tests in parallel controlled with an environment
|
|
# variable.
|
|
#
|
|
# Required environment variables:
|
|
# TF_GPU_COUNT = Number of GPUs available.
|
|
|
|
TF_GPU_COUNT=${TF_GPU_COUNT:-4}
|
|
TF_TESTS_PER_GPU=${TF_TESTS_PER_GPU:-8}
|
|
# We want to allow running one of the following configs:
|
|
# - 4 tests per GPU on k80
|
|
# - 8 tests per GPU on p100
|
|
# p100 has minimum 12G memory. Therefore, we should limit each test to 1.5G.
|
|
# To leave some room in case we want to run more tests in parallel in the
|
|
# future and to use a rounder number, we set it to 1G.
|
|
export TF_PER_DEVICE_MEMORY_LIMIT_MB=${TF_PER_DEVICE_MEMORY_LIMIT_MB:-1024}
|
|
|
|
# *******************************************************************
|
|
# This section of the script is needed to
|
|
# make things work on windows under msys.
|
|
# *******************************************************************
|
|
RUNFILES_MANIFEST_FILE="${TEST_SRCDIR}/MANIFEST"
|
|
function rlocation() {
|
|
if is_absolute "$1" ; then
|
|
# If the file path is already fully specified, simply return it.
|
|
echo "$1"
|
|
elif [[ -e "$TEST_SRCDIR/$1" ]]; then
|
|
# If the file exists in the $TEST_SRCDIR then just use it.
|
|
echo "$TEST_SRCDIR/$1"
|
|
elif [[ -e "$RUNFILES_MANIFEST_FILE" ]]; then
|
|
# If a runfiles manifest file exists then use it.
|
|
echo "$(grep "^$1 " "$RUNFILES_MANIFEST_FILE" | sed 's/[^ ]* //')"
|
|
fi
|
|
}
|
|
|
|
TEST_BINARY="$(rlocation $TEST_WORKSPACE/${1#./})"
|
|
shift
|
|
# *******************************************************************
|
|
|
|
mkdir -p /var/lock
|
|
# Try to acquire any of the TF_GPU_COUNT * TF_TESTS_PER_GPU
|
|
# slots to run a test at.
|
|
#
|
|
# Prefer to allocate 1 test per GPU over 4 tests on 1 GPU.
|
|
# So, we iterate over TF_TESTS_PER_GPU first.
|
|
for j in `seq 0 $((TF_TESTS_PER_GPU-1))`; do
|
|
for i in `seq 0 $((TF_GPU_COUNT-1))`; do
|
|
exec {lock_fd}>/var/lock/gpulock${i}_${j} || exit 1
|
|
if flock -n "$lock_fd";
|
|
then
|
|
(
|
|
# This export only works within the brackets, so it is isolated to one
|
|
# single command.
|
|
export CUDA_VISIBLE_DEVICES=$i
|
|
export HIP_VISIBLE_DEVICES=$i
|
|
echo "Running test $TEST_BINARY $* on GPU $CUDA_VISIBLE_DEVICES"
|
|
"$TEST_BINARY" $@
|
|
)
|
|
return_code=$?
|
|
flock -u "$lock_fd"
|
|
exit $return_code
|
|
fi
|
|
done
|
|
done
|
|
|
|
echo "Cannot find a free GPU to run the test $* on, exiting with failure..."
|
|
exit 1
|