cugraph icon indicating copy to clipboard operation
cugraph copied to clipboard

cuGraph - RAPIDS Graph Analytics Library

Results 541 cugraph issues
Sort by recently updated
recently updated
newest added
trafficstars

**Describe the solution you'd like and any additional context** We should set index to `_EDGE_ID_` and `_VERTEX_` for `_vertex_prop_dataframe` and `_edge_prop_dataframe` so that when we are fetching for sampling by...

inactive-30d

**Describe the solution you'd like and any additional context** We should use category dtype for `_TYPE_` column rather than string for `_edge_prop_dataframe` and `_vertex_prop_dataframe`. This will have following benefits: 1....

inactive-30d

**Describe the solution you'd like and any additional context** We should explore saving property graph for each table in different dataframes for potentially saving memory and speed up.

inactive-30d

The current [MG PropertyGraph test module](https://github.com/rapidsai/cugraph/blob/branch-22.08/python/cugraph/cugraph/tests/mg/test_mg_property_graph.py) contains only 3 tests and they're all being skipped.

? - Needs Triage
inactive-30d

Hi, The conda installation process mentioned in the main README file does not work for me. I cannot reproduce the error because I've installed it successfully in the next step:...

bug
inactive-30d

## Report incorrect or missing documentation The sample code for edge_betweenness_centrality is wrong. shows general betweenness_centrality **Location of documentation** https://docs.rapids.ai/api/cugraph/nightly/api_docs/api/cugraph.edge_betweenness_centrality.html

doc

Removes possibility of another projects RAPIDS.cmake being used, and removes need to always download a version.

**Describe the solution you'd like and any additional context** We should support `sample_incoming_edges` and `sample_outgoing_edges` for the uniform neighborhood sampling algorithm. Currently we only support sampling for `outgoing edges` ....

? - Needs Triage
inactive-30d

**Describe the solution you'd like and any additional context** We should optimize `cugraph.uniform_neighbor_sample`. ```python import cudf import cugraph df = cudf.read_parquet('/datasets/graph_nn/ogbn_products.parquet') G = cugraph.Graph(directed=True) G.from_cudf_edgelist(df,source='src',destination='dst',edge_attr='weight') batch = G.nodes()[0:4096] ``` ```python...

? - Needs Triage
inactive-30d

**Describe the solution you'd like and any additional context** I would like an API to reverse edges for a directed `cugraph.Graph ` . This can probably follow the reverse API...

feature request