Skip to content

HaibinLai/GAMMA

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GAMMA

Source code for our paper: GPU-Accelerated Batch-Dynamic Subgraph Matching

Platform

  • Ubuntu 20.04
  • CUDA 11.1
  • NVIDIA GTX 3090

Usage

  1. Build the project with make.
  2. Put the dataset in the datasets folder, which should include the data_graph and query_graph folders.
  3. Run the project with ./gamma -d ../datasets/data_graph/<data_graph> -i ../datasets/data_graph/<edge_stream> -q ../datasets/query_graph/<query_graph>.

Dataset

All the datasets used can be download from here

Formats of data graph and query graph

v id label
...
e src dst
...

where lines start with v denotes vertices and those start with e denotes edges, id is the vertex id, label is the vertex label, src and dst are the source and destination vertex id of an edge, respectively.

Formats edge_stream

e src dst
...

About

Source code of our paper for our paper: GPU-Accelerated Batch-Dynamic Subgraph Matching

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Cuda 98.7%
  • Makefile 1.3%