From 34f8471354da7255dbc12fc4eb9c4e6bd8352064 Mon Sep 17 00:00:00 2001 From: Ralph Liu <137829296+nv-rliu@users.noreply.github.com> Date: Mon, 24 Jun 2024 11:11:40 -0400 Subject: [PATCH 1/2] Skip MG `dgl_uniform_sampler` test in nightlies (#4479) Addresses https://github.com/rapidsai/graph_dl/issues/500 This PR adds a marker to skip `test_dgl_uniform_sampler_mg.py` in our nightly workflow on draco to unblock other tests that are waiting to be run. This will be marked "Skipped" while it is being investigated. Authors: - Ralph Liu (https://github.com/nv-rliu) Approvers: - Rick Ratzel (https://github.com/rlratzel) URL: https://github.com/rapidsai/cugraph/pull/4479 --- .../cugraph/tests/gnn/test_dgl_uniform_sampler_mg.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/python/cugraph/cugraph/tests/gnn/test_dgl_uniform_sampler_mg.py b/python/cugraph/cugraph/tests/gnn/test_dgl_uniform_sampler_mg.py index bc36e5f0631..13828ea1cc7 100644 --- a/python/cugraph/cugraph/tests/gnn/test_dgl_uniform_sampler_mg.py +++ b/python/cugraph/cugraph/tests/gnn/test_dgl_uniform_sampler_mg.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023, NVIDIA CORPORATION. +# Copyright (c) 2024, NVIDIA CORPORATION. # 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 @@ -21,6 +21,12 @@ from cugraph.gnn.dgl_extensions.dgl_uniform_sampler import DGLUniformSampler +pytestmark = pytest.mark.skip( + reason="Skipping this file until dask worker \ + slowdown has been investigated" +) + + def assert_correct_eids(edge_df, sample_edge_id_df): # We test that all src, dst correspond to the correct # eids in the sample_edge_id_df From 261e695b48db22157b400bf7adb1c458242d0dc6 Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Mon, 24 Jun 2024 10:06:21 -0700 Subject: [PATCH 2/2] Remove text builds of documentation (#4468) This PR removes text builds of the documentation, which we do not currently use for anything. Contributes to https://github.com/rapidsai/build-planning/issues/71. --------- Co-authored-by: Bradley Dice Co-authored-by: Ralph Liu <137829296+nv-rliu@users.noreply.github.com> --- ci/build_docs.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 089558bd452..8ec081163a3 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -72,10 +72,8 @@ pushd docs/cugraph # type of failure well. python -c "import cugraph; print(f'Using cugraph: {cugraph}')" sphinx-build -b dirhtml source _html -sphinx-build -b text source _text -mkdir -p "${RAPIDS_DOCS_DIR}/cugraph/"{html,txt} +mkdir -p "${RAPIDS_DOCS_DIR}/cugraph/html" mv _html/* "${RAPIDS_DOCS_DIR}/cugraph/html" -mv _text/* "${RAPIDS_DOCS_DIR}/cugraph/txt" popd rapids-upload-docs