├── LICENSE ├── README.md ├── benchmark ├── README.md ├── example1 │ └── example_workload.py └── neurosync_api.py ├── example.cfg ├── mapping ├── Parse.py ├── gen.py ├── gen_metis.py └── gen_submetis.py ├── neurosync ├── Checkpoint.pxd ├── Checkpoint.pyx ├── Core.pxd ├── Core.pyx ├── EnumList.pxd ├── EnumList.pyx ├── GlobalVars.py ├── Init.pxd ├── Init.pyx ├── KeyDict.py ├── Learning.pxd ├── Learning.pyx ├── Main.py ├── Neuron.pxd ├── Neuron.pyx ├── NoC.pxd ├── NoC.pyx ├── RRManager.pxd ├── RRManager.pyx ├── Router.pxd ├── Router.pyx └── setup.py ├── run.py └── runspace └── .gitkeep /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/example1/example_workload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/benchmark/example1/example_workload.py -------------------------------------------------------------------------------- /benchmark/neurosync_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/benchmark/neurosync_api.py -------------------------------------------------------------------------------- /example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/example.cfg -------------------------------------------------------------------------------- /mapping/Parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/mapping/Parse.py -------------------------------------------------------------------------------- /mapping/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/mapping/gen.py -------------------------------------------------------------------------------- /mapping/gen_metis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/mapping/gen_metis.py -------------------------------------------------------------------------------- /mapping/gen_submetis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/mapping/gen_submetis.py -------------------------------------------------------------------------------- /neurosync/Checkpoint.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Checkpoint.pxd -------------------------------------------------------------------------------- /neurosync/Checkpoint.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Checkpoint.pyx -------------------------------------------------------------------------------- /neurosync/Core.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Core.pxd -------------------------------------------------------------------------------- /neurosync/Core.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Core.pyx -------------------------------------------------------------------------------- /neurosync/EnumList.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/EnumList.pxd -------------------------------------------------------------------------------- /neurosync/EnumList.pyx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurosync/GlobalVars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/GlobalVars.py -------------------------------------------------------------------------------- /neurosync/Init.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Init.pxd -------------------------------------------------------------------------------- /neurosync/Init.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Init.pyx -------------------------------------------------------------------------------- /neurosync/KeyDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/KeyDict.py -------------------------------------------------------------------------------- /neurosync/Learning.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Learning.pxd -------------------------------------------------------------------------------- /neurosync/Learning.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Learning.pyx -------------------------------------------------------------------------------- /neurosync/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Main.py -------------------------------------------------------------------------------- /neurosync/Neuron.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Neuron.pxd -------------------------------------------------------------------------------- /neurosync/Neuron.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Neuron.pyx -------------------------------------------------------------------------------- /neurosync/NoC.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/NoC.pxd -------------------------------------------------------------------------------- /neurosync/NoC.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/NoC.pyx -------------------------------------------------------------------------------- /neurosync/RRManager.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/RRManager.pxd -------------------------------------------------------------------------------- /neurosync/RRManager.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/RRManager.pyx -------------------------------------------------------------------------------- /neurosync/Router.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Router.pxd -------------------------------------------------------------------------------- /neurosync/Router.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/Router.pyx -------------------------------------------------------------------------------- /neurosync/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/neurosync/setup.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SNU-HPCS/NeuroSync/HEAD/run.py -------------------------------------------------------------------------------- /runspace/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------