Skip to content

Commit

Permalink
Skip dask-cudf tests on arm64 (#9252)
Browse files Browse the repository at this point in the history
Temporary workaround for `arm64`
Importing cudf on arm64 CPU only nodes is currently not working due to a difference in reported gpu devices between arm64 and amd64

Authors:
  - Jordan Jacobelli (https://github.com/Ethyling)

Approvers:
  - Ray Douglass (https://github.com/raydouglass)

URL: #9252
  • Loading branch information
jjacobelli authored Sep 20, 2021
1 parent f08d6f1 commit 4defd25
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions conda/recipes/dask-cudf/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ function logger() {
echo -e "\n>>>> $@\n"
}

# Importing cudf on arm64 CPU only nodes is currently not working due to a
# difference in reported gpu devices between arm64 and amd64
ARCH=$(arch)

if [ "${ARCH}" = "aarch64" ]; then
logger "Skipping tests on arm64"
exit 0
fi

# Install the latest version of dask and distributed
logger "pip install git+https://github.com/dask/distributed.git@main --upgrade --no-deps"
pip install "git+https://github.com/dask/distributed.git@main" --upgrade --no-deps
Expand Down

0 comments on commit 4defd25

Please sign in to comment.