figshare
Browse
betweenness_code_public.zip (651.26 kB)

A GPU-Based Solution to Fast Calculation of Betweenness Centrality on Large Weighted Networks

Download (1.06 MB)
Version 2 2017-01-20, 00:38
Version 1 2017-01-12, 14:40
dataset
posted on 2017-01-20, 00:38 authored by Jichang ZhaoJichang Zhao

We develop an efficient parallel GPU-based approach to boost the calculation of betweenness centrality on very large and weighted networks. Comprehensive and systematic evaluations on both synthetic and real-world networks demonstrate that our solution can arrive the performance of 30x to 150x speedup over the CPU implementation by integrating the work-efficient and warp-centric strategies. 


README

This program compute node or edge betweenness centrality on weighted networks.


Graph format

The first line has two columns, the first item is the number of nodes and the second one is the number of edges. The following lines are weighted edges that contain three columns. The first two items are the node pair and the last item is the weight of the link. One edge appears only once, e.g., if "0 1 0.5" is in the file, the edge "1 0 0.5" must not show up. You can find an example file named "graph.txt".

Installation:

We use "tclap" as the command line tool which should be installed in the first step. Then you can compile BC.cu and main.cu to get the executable program.

You can run the executable program without params to see the usage document.

History