A GPU-Based Solution to Fast Calculation of Betweenness Centrality on Large Weighted Networks
收藏NIAID Data Ecosystem2026-03-10 收录
下载链接:
https://figshare.com/articles/dataset/A_GPU-Based_Solution_to_Fast_Calculation_of_Betweenness_Centrality_on_Large_Weighted_Networks/4542405
下载链接
链接失效反馈官方服务:
资源简介:
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.
创建时间:
2017-01-20



