mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
`set -u` (does not allow unbound variables) has been removed from all scripts. This is due to Docker on Windows treating variables in an env file, set to an empty value (`MY_VAR=`), as unbound variables. Consequently, these variables, even though they are "set", do not make it into the Docker container at all, and various checks for those variables fail outright. PiperOrigin-RevId: 713717958
40 lines
1.9 KiB
Bash
Executable File
40 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright 2023 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.
|
|
# ==============================================================================
|
|
source "${BASH_SOURCE%/*}/utilities/setup.sh"
|
|
|
|
if [[ `uname -s | grep -P '^MSYS_NT'` ]]; then
|
|
PROFILE_JSON_PATH=$(replace_drive_letter_with_prefix "$TFCI_OUTPUT_WIN_DOCKER_DIR")
|
|
PROFILE_JSON_PATH="$PROFILE_JSON_PATH/profile.json.gz"
|
|
else
|
|
PROFILE_JSON_PATH="$TFCI_OUTPUT_DIR/profile.json.gz"
|
|
fi
|
|
|
|
# TODO(b/361369076) Remove the following block after TF NumPy 1 is dropped
|
|
# Move hermetic requirement lock files for NumPy 1 to the root
|
|
if [[ "$TFCI_WHL_NUMPY_VERSION" == 1 ]]; then
|
|
cp ./ci/official/requirements_updater/numpy1_requirements/*.txt .
|
|
fi
|
|
|
|
if [[ $TFCI_PYCPP_SWAP_TO_BUILD_ENABLE == 1 ]]; then
|
|
tfrun bazel $TFCI_BAZEL_BAZELRC_ARGS build $TFCI_BAZEL_COMMON_ARGS --profile "$PROFILE_JSON_PATH" --@local_config_cuda//cuda:override_include_cuda_libs=true --config="${TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX}_pycpp_test"
|
|
else
|
|
tfrun bazel $TFCI_BAZEL_BAZELRC_ARGS test $TFCI_BAZEL_COMMON_ARGS --profile "$PROFILE_JSON_PATH" --@local_config_cuda//cuda:override_include_cuda_libs=true --config="${TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX}_pycpp_test"
|
|
fi
|
|
|
|
# Note: the profile can be viewed by visiting chrome://tracing in a Chrome browser.
|
|
# See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
|
|
tfrun bazel analyze-profile "$PROFILE_JSON_PATH"
|