├── .gitignore ├── LICENSE ├── README.md ├── code ├── benchmark.py ├── graphtool_profile.py ├── igraph_profile.py ├── lightgraphs.jl ├── networkit_profile.py ├── networkx_profile.py └── snap_profile.py ├── data ├── .gitignore └── download_data.sh ├── output ├── 2019_04 │ ├── graphtool_amazon.txt │ ├── graphtool_google.txt │ ├── graphtool_pokec.txt │ ├── igraph_amazon.txt │ ├── igraph_google.txt │ ├── igraph_pokec.txt │ ├── networkit_amazon.txt │ ├── networkit_google.txt │ ├── networkit_pokec.txt │ ├── networkx_amazon.txt │ ├── networkx_google.txt │ ├── networkx_pokec.txt │ ├── snap_amazon.txt │ ├── snap_google.txt │ └── snap_pokec.txt ├── 2020_02 │ ├── lightgraphs_amazon.txt │ ├── lightgraphs_google.txt │ └── lightgraphs_pokec.txt └── 2020_05 │ ├── graphtool_amazon.txt │ ├── graphtool_google_16t.txt │ ├── graphtool_google_1t.txt │ ├── graphtool_google_4t.txt │ ├── graphtool_google_8t.txt │ ├── graphtool_pokec.txt │ ├── igraph_amazon.txt │ ├── igraph_google.txt │ ├── igraph_pokec.txt │ ├── lightgraphs_amazon.txt │ ├── lightgraphs_google_16t.txt │ ├── lightgraphs_google_1t.txt │ ├── lightgraphs_google_4t.txt │ ├── lightgraphs_google_8t.txt │ ├── lightgraphs_pokec.txt │ ├── networkit_amazon.txt │ ├── networkit_google_16t.txt │ ├── networkit_google_1t.txt │ ├── networkit_google_4t.txt │ ├── networkit_google_8t.txt │ ├── networkit_pokec.txt │ ├── networkx_amazon.txt │ ├── networkx_google.txt │ ├── networkx_pokec.txt │ ├── snap_amazon.txt │ ├── snap_google.txt │ └── snap_pokec.txt ├── run_profiler.sh ├── runtime_results.png └── setup ├── setup.md └── startup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /code/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/code/benchmark.py -------------------------------------------------------------------------------- /code/graphtool_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/code/graphtool_profile.py -------------------------------------------------------------------------------- /code/igraph_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/code/igraph_profile.py -------------------------------------------------------------------------------- /code/lightgraphs.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/code/lightgraphs.jl -------------------------------------------------------------------------------- /code/networkit_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/code/networkit_profile.py -------------------------------------------------------------------------------- /code/networkx_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/code/networkx_profile.py -------------------------------------------------------------------------------- /code/snap_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/code/snap_profile.py -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !download_data.sh 4 | -------------------------------------------------------------------------------- /data/download_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/data/download_data.sh -------------------------------------------------------------------------------- /output/2019_04/graphtool_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/graphtool_amazon.txt -------------------------------------------------------------------------------- /output/2019_04/graphtool_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/graphtool_google.txt -------------------------------------------------------------------------------- /output/2019_04/graphtool_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/graphtool_pokec.txt -------------------------------------------------------------------------------- /output/2019_04/igraph_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/igraph_amazon.txt -------------------------------------------------------------------------------- /output/2019_04/igraph_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/igraph_google.txt -------------------------------------------------------------------------------- /output/2019_04/igraph_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/igraph_pokec.txt -------------------------------------------------------------------------------- /output/2019_04/networkit_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/networkit_amazon.txt -------------------------------------------------------------------------------- /output/2019_04/networkit_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/networkit_google.txt -------------------------------------------------------------------------------- /output/2019_04/networkit_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/networkit_pokec.txt -------------------------------------------------------------------------------- /output/2019_04/networkx_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/networkx_amazon.txt -------------------------------------------------------------------------------- /output/2019_04/networkx_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/networkx_google.txt -------------------------------------------------------------------------------- /output/2019_04/networkx_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/networkx_pokec.txt -------------------------------------------------------------------------------- /output/2019_04/snap_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/snap_amazon.txt -------------------------------------------------------------------------------- /output/2019_04/snap_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/snap_google.txt -------------------------------------------------------------------------------- /output/2019_04/snap_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2019_04/snap_pokec.txt -------------------------------------------------------------------------------- /output/2020_02/lightgraphs_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_02/lightgraphs_amazon.txt -------------------------------------------------------------------------------- /output/2020_02/lightgraphs_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_02/lightgraphs_google.txt -------------------------------------------------------------------------------- /output/2020_02/lightgraphs_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_02/lightgraphs_pokec.txt -------------------------------------------------------------------------------- /output/2020_05/graphtool_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/graphtool_amazon.txt -------------------------------------------------------------------------------- /output/2020_05/graphtool_google_16t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/graphtool_google_16t.txt -------------------------------------------------------------------------------- /output/2020_05/graphtool_google_1t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/graphtool_google_1t.txt -------------------------------------------------------------------------------- /output/2020_05/graphtool_google_4t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/graphtool_google_4t.txt -------------------------------------------------------------------------------- /output/2020_05/graphtool_google_8t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/graphtool_google_8t.txt -------------------------------------------------------------------------------- /output/2020_05/graphtool_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/graphtool_pokec.txt -------------------------------------------------------------------------------- /output/2020_05/igraph_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/igraph_amazon.txt -------------------------------------------------------------------------------- /output/2020_05/igraph_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/igraph_google.txt -------------------------------------------------------------------------------- /output/2020_05/igraph_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/igraph_pokec.txt -------------------------------------------------------------------------------- /output/2020_05/lightgraphs_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/lightgraphs_amazon.txt -------------------------------------------------------------------------------- /output/2020_05/lightgraphs_google_16t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/lightgraphs_google_16t.txt -------------------------------------------------------------------------------- /output/2020_05/lightgraphs_google_1t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/lightgraphs_google_1t.txt -------------------------------------------------------------------------------- /output/2020_05/lightgraphs_google_4t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/lightgraphs_google_4t.txt -------------------------------------------------------------------------------- /output/2020_05/lightgraphs_google_8t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/lightgraphs_google_8t.txt -------------------------------------------------------------------------------- /output/2020_05/lightgraphs_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/lightgraphs_pokec.txt -------------------------------------------------------------------------------- /output/2020_05/networkit_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkit_amazon.txt -------------------------------------------------------------------------------- /output/2020_05/networkit_google_16t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkit_google_16t.txt -------------------------------------------------------------------------------- /output/2020_05/networkit_google_1t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkit_google_1t.txt -------------------------------------------------------------------------------- /output/2020_05/networkit_google_4t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkit_google_4t.txt -------------------------------------------------------------------------------- /output/2020_05/networkit_google_8t.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkit_google_8t.txt -------------------------------------------------------------------------------- /output/2020_05/networkit_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkit_pokec.txt -------------------------------------------------------------------------------- /output/2020_05/networkx_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkx_amazon.txt -------------------------------------------------------------------------------- /output/2020_05/networkx_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkx_google.txt -------------------------------------------------------------------------------- /output/2020_05/networkx_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/networkx_pokec.txt -------------------------------------------------------------------------------- /output/2020_05/snap_amazon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/snap_amazon.txt -------------------------------------------------------------------------------- /output/2020_05/snap_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/snap_google.txt -------------------------------------------------------------------------------- /output/2020_05/snap_pokec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/output/2020_05/snap_pokec.txt -------------------------------------------------------------------------------- /run_profiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/run_profiler.sh -------------------------------------------------------------------------------- /runtime_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/runtime_results.png -------------------------------------------------------------------------------- /setup/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/setup/setup.md -------------------------------------------------------------------------------- /setup/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timlrx/graph-benchmarks/HEAD/setup/startup.sh --------------------------------------------------------------------------------