We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 637b0a5 commit 460cb11Copy full SHA for 460cb11
ci/utilities/install_wheels_locally.sh
@@ -19,16 +19,14 @@
19
# using the Windows version of `find` on Windows.
20
WHEELS=( $(/usr/bin/find "$JAXCI_OUTPUT_DIR/" -type f \( -name "*jaxlib*" -o -name "*jax*cuda*pjrt*" -o -name "*jax*cuda*plugin*" \)) )
21
22
-echo $WHEELS
23
if [[ -z "$WHEELS" ]]; then
24
echo "ERROR: No wheels found under $JAXCI_OUTPUT_DIR"
25
exit 1
26
fi
27
28
-for wheel in "${WHEELS[@]}"; do
29
- echo "Installing $(basename $wheel) ..."
30
- "$JAXCI_PYTHON" -m pip install "$wheel"
31
-done
+echo "Installing the following wheels:"
+echo "${WHEELS[@]}"
+"$JAXCI_PYTHON" -m pip install "${WHEELS[@]}"
32
33
echo "Installing the JAX package in editable mode at the current commit..."
34
# Install JAX package at the current commit.
0 commit comments