diff --git a/CHANGELOG.md b/CHANGELOG.md index 771c155fa3d..baf8e1485a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ - PR #1285 Move codecov upload to gpu build script - PR #1290 Update weights check in bc and graph prims wrappers - PR #1299 Update doc and notebook +- PR #1304 Enable all GPU archs for test builds # cuGraph 0.16.0 (21 Oct 2020) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 2d9eb1b6e58..9dd6e14181e 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -91,7 +91,7 @@ conda list --show-channel-urls if [[ -z "$PROJECT_FLASH" || "$PROJECT_FLASH" == "0" ]]; then gpuci_logger "Build from source" - $WORKSPACE/build.sh clean libcugraph cugraph + $WORKSPACE/build.sh -v clean libcugraph cugraph --allgpuarch fi ################################################################################ diff --git a/python/cugraph/tests/utils.py b/python/cugraph/tests/utils.py index aef605b1726..164c6efb084 100644 --- a/python/cugraph/tests/utils.py +++ b/python/cugraph/tests/utils.py @@ -73,13 +73,13 @@ MATRIX_INPUT_TYPES = [ pytest.param( - cp_coo_matrix, marks=pytest.mark.cupy_types, id="CuPy.coo_matrix" + cp_coo_matrix, marks=pytest.mark.matrix_types, id="CuPy.coo_matrix" ), pytest.param( - cp_csr_matrix, marks=pytest.mark.cupy_types, id="CuPy.csr_matrix" + cp_csr_matrix, marks=pytest.mark.matrix_types, id="CuPy.csr_matrix" ), pytest.param( - cp_csc_matrix, marks=pytest.mark.cupy_types, id="CuPy.csc_matrix" + cp_csc_matrix, marks=pytest.mark.matrix_types, id="CuPy.csc_matrix" ), ]