A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.rapids.ai/api/cugraph/nightly/ below:

* NOTICE * — cugraph-docs 25.08.00 documentation

* NOTICE *#

cuGraph-DGL has been removed from cuGraph GNN as of release 25.06. We recommend migrating to cuGraph-PyG, which offers the same functionality along with additional features like support for heterogeneous sampling and a unified API. The cuGraph team is not planning any further work in the DGL ecosystem going forward.

The cuGraph repository has been refactored to make it more efficient to build, maintain and use.

Libraries supporting GNNs are now located in the cugraph-gnn repository

RAPIDS nx-cugraph is now located in the nx-cugraph repository containing a backend to NetworkX for running supported algorithms with GPU acceleration.

The cugraph-docs repository contains code to generate cuGraph documentation.

RAPIDS Graph documentation# Introduction#

cuGraph is a library of graph algorithms that seamlessly integrates into the RAPIDS data science ecosystem and allows data scientists to easily call graph algorithms using data stored in cuDF/Pandas DataFrames or CuPy/SciPy sparse matrices.

cuGraph Using NetworkX Code#

cuGraph is now available as a NetworkX backend using nx-cugraph. Our major integration effort with NetworkX offers NetworkX users a zero code change option to accelerate their existing NetworkX code using an NVIDIA GPU and cuGraph.

Check out zero code change accelerated NetworkX. If you would like to continue using standard cuGraph, then continue down below.

Getting started with cuGraph#

Required hardware/software for cuGraph and RAPIDS

Installation#

Please see the latest RAPIDS System Requirements documentation.

This includes several ways to set up cuGraph

Note: Windows use of RAPIDS depends on prior installation of WSL2.

Cugraph API Example

import cugraph
import cudf

# Create an instance of the popular Zachary Karate Club graph
from cugraph.datasets import karate
G = karate.get_graph()

# Call cugraph.degree_centrality
vertex_bc = cugraph.degree_centrality(G)

There are several resources containing cuGraph examples, the cuGraph notebook repository has many examples of loading graph data and running algorithms in Jupyter notebooks. The cuGraph test code contains script examples of setting up and calling cuGraph algorithms.

A simple example of testing the degree centrality algorithm is a good place to start. There are also multi-GPU examples with larger data sets as well.

Table of Contents# Indices and tables#

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4