├── .gitignore ├── AE ├── ae1_parser.py ├── ae1_tpt_cob.py ├── ae1_tpt_eas.py ├── ae1_tpt_flx.py ├── ae1_tpt_opt_baseline.py ├── ae2_acc_baseline.py ├── ae2_acc_eas.py ├── ae2_parser.py ├── badges.png └── configs.py ├── Codes ├── brief_masking_test.sh ├── brief_opt_baseline_test.sh ├── brief_sampling_test.sh ├── helper │ ├── MongoManager.py │ ├── __init__.py │ ├── context.py │ ├── feature_buffer.py │ ├── intra_context.py │ ├── mapper.py │ ├── parser.py │ ├── reducer.py │ ├── sampler.py │ ├── timer │ │ ├── __init__.py │ │ ├── comm_timer.py │ │ └── timer.py │ └── utils.py ├── main.py ├── module │ ├── __init__.py │ ├── baseline_model.py │ ├── layer.py │ ├── model.py │ ├── others.py │ └── sync_bn.py ├── our_main.py ├── our_train.py ├── test.py └── train.py ├── LICENSE ├── PACT24_GraNNDis_Author_Copy.pdf ├── README.md ├── conda-requirements.txt ├── parse_ae.sh ├── pip-requirements.txt └── run_ae.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/.gitignore -------------------------------------------------------------------------------- /AE/ae1_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae1_parser.py -------------------------------------------------------------------------------- /AE/ae1_tpt_cob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae1_tpt_cob.py -------------------------------------------------------------------------------- /AE/ae1_tpt_eas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae1_tpt_eas.py -------------------------------------------------------------------------------- /AE/ae1_tpt_flx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae1_tpt_flx.py -------------------------------------------------------------------------------- /AE/ae1_tpt_opt_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae1_tpt_opt_baseline.py -------------------------------------------------------------------------------- /AE/ae2_acc_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae2_acc_baseline.py -------------------------------------------------------------------------------- /AE/ae2_acc_eas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae2_acc_eas.py -------------------------------------------------------------------------------- /AE/ae2_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/ae2_parser.py -------------------------------------------------------------------------------- /AE/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/badges.png -------------------------------------------------------------------------------- /AE/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/AE/configs.py -------------------------------------------------------------------------------- /Codes/brief_masking_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/brief_masking_test.sh -------------------------------------------------------------------------------- /Codes/brief_opt_baseline_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/brief_opt_baseline_test.sh -------------------------------------------------------------------------------- /Codes/brief_sampling_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/brief_sampling_test.sh -------------------------------------------------------------------------------- /Codes/helper/MongoManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/MongoManager.py -------------------------------------------------------------------------------- /Codes/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codes/helper/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/context.py -------------------------------------------------------------------------------- /Codes/helper/feature_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/feature_buffer.py -------------------------------------------------------------------------------- /Codes/helper/intra_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/intra_context.py -------------------------------------------------------------------------------- /Codes/helper/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/mapper.py -------------------------------------------------------------------------------- /Codes/helper/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/parser.py -------------------------------------------------------------------------------- /Codes/helper/reducer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/reducer.py -------------------------------------------------------------------------------- /Codes/helper/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/sampler.py -------------------------------------------------------------------------------- /Codes/helper/timer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codes/helper/timer/comm_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/timer/comm_timer.py -------------------------------------------------------------------------------- /Codes/helper/timer/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/timer/timer.py -------------------------------------------------------------------------------- /Codes/helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/helper/utils.py -------------------------------------------------------------------------------- /Codes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/main.py -------------------------------------------------------------------------------- /Codes/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Codes/module/baseline_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/module/baseline_model.py -------------------------------------------------------------------------------- /Codes/module/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/module/layer.py -------------------------------------------------------------------------------- /Codes/module/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/module/model.py -------------------------------------------------------------------------------- /Codes/module/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/module/others.py -------------------------------------------------------------------------------- /Codes/module/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/module/sync_bn.py -------------------------------------------------------------------------------- /Codes/our_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/our_main.py -------------------------------------------------------------------------------- /Codes/our_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/our_train.py -------------------------------------------------------------------------------- /Codes/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/test.py -------------------------------------------------------------------------------- /Codes/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/Codes/train.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/LICENSE -------------------------------------------------------------------------------- /PACT24_GraNNDis_Author_Copy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/PACT24_GraNNDis_Author_Copy.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/README.md -------------------------------------------------------------------------------- /conda-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/conda-requirements.txt -------------------------------------------------------------------------------- /parse_ae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/parse_ae.sh -------------------------------------------------------------------------------- /pip-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/pip-requirements.txt -------------------------------------------------------------------------------- /run_ae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AIS-SNU/GraNNDis_Artifact/HEAD/run_ae.sh --------------------------------------------------------------------------------