mirror of
https://github.com/ROCm/jax.git
synced 2025-04-16 11:56:07 +00:00

This commit adds the new CI scripts for running Pytests. It makes use of the pytest envs inside the "ci/envs/run_tests" folder to control the build behavior. For e.g: for running the GPU tests with Pytest, we will need to run `./ci/run_pytest.sh ./ci/envs/run_tests/pytest_gpu.env`. Note that Pytests need JAX wheels to be installed on the system to work. The `install_wheels_locally.sh` script installs these wheels in CI builds. PiperOrigin-RevId: 701331411
34 lines
1.4 KiB
Bash
34 lines
1.4 KiB
Bash
#!/bin/bash
|
|
# Copyright 2024 The JAX Authors.
|
|
#
|
|
# 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.
|
|
# ==============================================================================
|
|
#
|
|
# Install wheels stored in `JAXCI_OUTPUT_DIR` on the system using the Python
|
|
# binary set in JAXCI_PYTHON. Use the absolute path to the `find` utility to
|
|
# avoid using the Windows version of `find` on Msys.
|
|
WHEELS=( $(/usr/bin/find "$JAXCI_OUTPUT_DIR/" -type f \( -name "*jaxlib*" -o -name "*jax*cuda*pjrt*" -o -name "*jax*cuda*plugin*" \)) )
|
|
|
|
if [[ -z "$WHEELS" ]]; then
|
|
echo "ERROR: No wheels found under $JAXCI_OUTPUT_DIR"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Installing the following wheels:"
|
|
echo "${WHEELS[@]}"
|
|
"$JAXCI_PYTHON" -m pip install "${WHEELS[@]}"
|
|
|
|
echo "Installing the JAX package in editable mode at the current commit..."
|
|
# Install JAX package at the current commit.
|
|
"$JAXCI_PYTHON" -m pip install -U -e .
|