From 5b72af3a8a8434201a017d659108701ff3a077f6 Mon Sep 17 00:00:00 2001 From: Naim <110031745+naimnv@users.noreply.github.com> Date: Tue, 21 May 2024 16:25:02 +0200 Subject: [PATCH 1/3] Fix a bug in kv_store_t implementation (#4434) Fix a bug in kv_store_t implementation Authors: - Naim (https://github.com/naimnv) Approvers: - Chuck Hastings (https://github.com/ChuckHastings) URL: https://github.com/rapidsai/cugraph/pull/4434 --- cpp/src/prims/kv_store.cuh | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/src/prims/kv_store.cuh b/cpp/src/prims/kv_store.cuh index 2cc7856d87a..76b64b5692b 100644 --- a/cpp/src/prims/kv_store.cuh +++ b/cpp/src/prims/kv_store.cuh @@ -526,6 +526,7 @@ class kv_cuco_store_t { std::conditional_t, value_t, void>>(0, stream)) { allocate(capacity, invalid_key, invalid_value, stream); + if constexpr (!std::is_arithmetic_v) { invalid_value_ = invalid_value; } capacity_ = capacity; size_ = 0; } From 8d8b4fde6922efbae88b46e840b9af7f089b30bb Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Tue, 21 May 2024 12:18:07 -0400 Subject: [PATCH 2/3] Update DGL_support.md (#4327) Believe the path suggested previously is outdated. Authors: - Ray Bell (https://github.com/raybellwaves) - Don Acosta (https://github.com/acostadon) - Rick Ratzel (https://github.com/rlratzel) Approvers: - Don Acosta (https://github.com/acostadon) URL: https://github.com/rapidsai/cugraph/pull/4327 --- docs/cugraph/source/graph_support/DGL_support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cugraph/source/graph_support/DGL_support.md b/docs/cugraph/source/graph_support/DGL_support.md index dc4f66180ac..9df462155fd 100644 --- a/docs/cugraph/source/graph_support/DGL_support.md +++ b/docs/cugraph/source/graph_support/DGL_support.md @@ -17,7 +17,7 @@ mamba install cugraph-dgl -c rapidsai-nightly -c rapidsai -c pytorch -c conda-fo ### Create the conda development environment ``` -mamba env create -n cugraph_dgl_dev --file conda/cugraph_dgl_dev_11.6.yml +conda env create -n cugraph_dgl_dev --file conda/environments/all_cuda-122_arch-x86_64.yaml ``` ### Install in editable mode From ddfaacf1bd9d305b31e2c55b7ae954ba13f21899 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Tue, 21 May 2024 21:24:18 -0400 Subject: [PATCH 3/3] DOC: doc-update-link-for-cugraphops (#4279) Fixes a broken link https://github.com/rapidsai/cugraph-ops/blob/branch-23.04/README.md -> https://github.com/rapidsai/cugraph/blob/branch-24.04/readme_pages/cugraph_ops.md Authors: - Ray Bell (https://github.com/raybellwaves) - Alex Barghi (https://github.com/alexbarghi-nv) - Rick Ratzel (https://github.com/rlratzel) Approvers: - Don Acosta (https://github.com/acostadon) URL: https://github.com/rapidsai/cugraph/pull/4279 --- docs/cugraph/source/graph_support/cugraphops_support.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cugraph/source/graph_support/cugraphops_support.rst b/docs/cugraph/source/graph_support/cugraphops_support.rst index fd79564f849..96b13f62a9c 100644 --- a/docs/cugraph/source/graph_support/cugraphops_support.rst +++ b/docs/cugraph/source/graph_support/cugraphops_support.rst @@ -7,4 +7,4 @@ cugraph-ops aims to be a low-level, framework agnostic library providing commonl .. toctree:: :maxdepth: 3 - https://github.com/rapidsai/cugraph-ops/blob/branch-23.04/README.md + https://github.com/rapidsai/cugraph/blob/branch-24.06/readme_pages/cugraph_ops.md