Skip to content

Commit

Permalink
Skip dask-cudf tests on arm64
Browse files Browse the repository at this point in the history
Signed-off-by: Jordan Jacobelli <jjacobelli@nvidia.com>
  • Loading branch information
jjacobelli committed Sep 20, 2021
1 parent f08d6f1 commit 09bbf18
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 09bbf18

Please sign in to comment.