├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bin └── .gitkeep ├── core ├── atomic.hpp ├── bigvector.hpp ├── bitmap.hpp ├── constants.hpp ├── filesystem.hpp ├── graph.hpp ├── partition.hpp ├── queue.hpp ├── time.hpp └── type.hpp ├── examples ├── pagerank.cpp ├── pagerank_delta.cpp └── pagerank_gg.cpp └── tools ├── clear_cache.sh ├── preprocess.cpp └── raise_ulimit_n.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/atomic.hpp -------------------------------------------------------------------------------- /core/bigvector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/bigvector.hpp -------------------------------------------------------------------------------- /core/bitmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/bitmap.hpp -------------------------------------------------------------------------------- /core/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/constants.hpp -------------------------------------------------------------------------------- /core/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/filesystem.hpp -------------------------------------------------------------------------------- /core/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/graph.hpp -------------------------------------------------------------------------------- /core/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/partition.hpp -------------------------------------------------------------------------------- /core/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/queue.hpp -------------------------------------------------------------------------------- /core/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/time.hpp -------------------------------------------------------------------------------- /core/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/core/type.hpp -------------------------------------------------------------------------------- /examples/pagerank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/examples/pagerank.cpp -------------------------------------------------------------------------------- /examples/pagerank_delta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/examples/pagerank_delta.cpp -------------------------------------------------------------------------------- /examples/pagerank_gg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/examples/pagerank_gg.cpp -------------------------------------------------------------------------------- /tools/clear_cache.sh: -------------------------------------------------------------------------------- 1 | sync; echo 3 > /proc/sys/vm/drop_caches 2 | -------------------------------------------------------------------------------- /tools/preprocess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pdclab/lumos/HEAD/tools/preprocess.cpp -------------------------------------------------------------------------------- /tools/raise_ulimit_n.sh: -------------------------------------------------------------------------------- 1 | sudo sh -c "ulimit -n 1048576 && exec su $LOGNAME" 2 | --------------------------------------------------------------------------------