├── LICENSE ├── README.md ├── helper ├── __init__.py ├── context.py ├── feature_buffer.py ├── parser.py ├── reducer.py ├── timer │ ├── __init__.py │ ├── comm_timer.py │ └── timer.py └── utils.py ├── main.py ├── module ├── __init__.py ├── layer.py ├── model.py └── sync_bn.py ├── scripts ├── ogbn-products.sh ├── reddit.sh ├── reddit_multi_node.sh └── yelp.sh ├── setup.sh └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/README.md -------------------------------------------------------------------------------- /helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/helper/context.py -------------------------------------------------------------------------------- /helper/feature_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/helper/feature_buffer.py -------------------------------------------------------------------------------- /helper/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/helper/parser.py -------------------------------------------------------------------------------- /helper/reducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/helper/reducer.py -------------------------------------------------------------------------------- /helper/timer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helper/timer/comm_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/helper/timer/comm_timer.py -------------------------------------------------------------------------------- /helper/timer/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/helper/timer/timer.py -------------------------------------------------------------------------------- /helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/helper/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/main.py -------------------------------------------------------------------------------- /module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/module/layer.py -------------------------------------------------------------------------------- /module/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/module/model.py -------------------------------------------------------------------------------- /module/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/module/sync_bn.py -------------------------------------------------------------------------------- /scripts/ogbn-products.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/scripts/ogbn-products.sh -------------------------------------------------------------------------------- /scripts/reddit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/scripts/reddit.sh -------------------------------------------------------------------------------- /scripts/reddit_multi_node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/scripts/reddit_multi_node.sh -------------------------------------------------------------------------------- /scripts/yelp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/scripts/yelp.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/setup.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GATECH-EIC/PipeGCN/HEAD/train.py --------------------------------------------------------------------------------