Skip to content

lushl9301/G3

 
 


What's new

G3 is research prototype that is currently in active development. You are welcome to share ideas and contribute.

Overview

G3 is built as a programming framework for Graph Neural Network (GNN) applications that supports graph related operations natively and leverages on the computation power of Graphics Processing Units (GPU). It is named G3, which stands for Graph processing system but tailored for GNN processing on GPUs. The values of G3 can be summarized as follow:

  • G3 thrives to fundamentally enhance the performance of GNN applications by incorporating graph oriented operators at the low level.
  • G3 provides a set of existing basic modules that can be stacked up to build up user-customized GNN architectures.
  • G3 provides flexible C++ based APIs such that developers are able to define and implement their own GNN layers when such layers do not exist in our system.
  • G3 frees the programmers from low level GPU thread management and memory management concerns, which is usually daunting and injects numerous unnoticeable bugs into the system.
  • G3 automatically applies graph-centric optimizations on the GNN architectures during run time.

We have done some preliminary studies to show how such system can be used to build Graph Convolutional Network (GCN) , the state of the art in various GNN models, and how our implementation exceeds the performances of Tensorflow implementation (the original implementation) as well as PyTorch implementation by a significant margin. Details are here.

G3 is built based on Gunrock, a CUDA library for graph-processing designed specifically for the GPU. For more details, see Gunrock's Github repo.

Getting Started

Prerequisites

Quick Install

How to cite G3

If you use G3 in your paper, please cite our work (full version).

@article{husong2020g3,
 author = {Liu, Husong and Lu, Shengliang and Chen, Xinyu and He, Bingsheng},
 title = {G3: When Graph Neural Networks Meet Parallel Graph Processing Systems on GPUs},
 journal = {under submission},
 year = {2020}
}

Related work

About

No description, website, or topics provided.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Cuda 91.9%
  • C++ 2.4%
  • Shell 2.2%
  • CMake 1.7%
  • C 0.5%
  • Python 0.3%
  • Other 1.0%