jspark1105 / gapbs

GAP Benchmark Suite

Home Page:gap.cs.berkeley.edu/benchmark.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GAP Benchmark Suite Build Status

This is a pre-release version of the reference code for the upcoming GAP Benchmark Suite. It is designed to be a portable high-performance baseline that only requires a compiler with support for C++11. For parallelism it uses OpenMP, but it can also be compiled to run serially without OpenMP. The details of the benchmark can be found in the draft specification.

Kernels Included

  • Breadth-First Search (BFS)
  • Single-Source Shortest Paths (SSSP)
  • PageRank (PR)
  • Connected Components (CC)
  • Betweenness Centrality (BC)
  • Triangle Counting (TC)

Quick Start

Build the project:

$ make

Override the default C++ compiler:

$ CXX=g++-4.9 make

Test the build:

$ make test

Run BFS on 1,024 vertices for 1 iteration:

$ ./bfs -g 10 -n 1

Additional command line flags can be found with -h

Graph Loading

All of the binaries use the same command-line options for loading graphs:

  • -g 20 generates a Kronecker graph with 2^20 vertices (Graph500 specifications)
  • -u 20 generates a uniform random graph with 2^20 vertices (degree 16)
  • -f graph.el loads graph from file graph.el
  • -sf graph.el symmetrizes graph loaded from file graph.el

The graph loading infrastructure understands the following formats:

Future Features

  • Release integration support for OpenTuner
  • Scripts to perform official benchmark runs

How to Cite

Please cite this code by the benchmark specification:

Scott Beamer, Krste Asanović, David Patterson. The GAP Benchmark Suite. arXiv:1508.03619 [cs.DC], 2015.

About

GAP Benchmark Suite

gap.cs.berkeley.edu/benchmark.html

License:Other


Languages

Language:C++ 95.8%Language:Makefile 3.1%Language:Emacs Lisp 1.1%