├── .gitignore ├── .gitmodules ├── .project ├── .pydevproject ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── examples │ ├── examples.txt │ └── reservoir.txt ├── general │ ├── aex_reprogramming.txt │ ├── api.txt │ ├── experiments.txt │ ├── hardware_setup.txt │ ├── installation.txt │ ├── introduction.txt │ ├── learning.txt │ ├── license.txt │ ├── modules.txt │ ├── new_hardware.txt │ ├── pyNCS.AerViewer.txt │ ├── pyNCS.pyST.txt │ ├── pyNCS.txt │ ├── pyosc.txt │ ├── pyst.txt │ ├── pytune.txt │ ├── pytune_plugin.txt │ ├── pytune_python_file_template.txt │ ├── pytune_xml_file_template.txt │ ├── spcm.txt │ ├── troubleshooting.txt │ └── tutorial.txt ├── images │ ├── amda_and_aex.jpg │ ├── decorated_data.png │ ├── fig1.png │ ├── mapping_2d.png │ ├── mapping_all.png │ ├── meanrate_tutorial.png │ ├── normalized_data_zoomed.png │ ├── pytune.png │ ├── raster_tutorial.png │ ├── raw_data.png │ ├── software.jpg │ ├── software.png │ └── zenzero_setup.png └── index.txt ├── setup.py ├── src └── pyNCS │ ├── __init__.py │ ├── api │ ├── BaseComAPI.py │ ├── BaseConfAPI.py │ ├── BrianAPI.py │ ├── ComAPI.py │ ├── ConfAPI.py │ ├── IFSLWTA_brian_model.py │ ├── __init__.py │ ├── loopbackAPI.py │ └── paramTranslation.py │ ├── changes │ ├── chip_v2.py │ ├── connection.py │ ├── data │ ├── setup.dtd │ └── setuptype.dtd │ ├── experimentTools.py │ ├── group.py │ ├── mapping.py │ ├── monitors.py │ ├── neurosetup.py │ ├── population.py │ └── pyST │ ├── STas.py │ ├── STsl.py │ ├── __init__.py │ ├── pyST_globals.py │ ├── spikes.py │ └── stgen.py └── test ├── biases ├── defaultBiases_if2dwta └── defaultBiases_ifslwta ├── chipfiles ├── if2dwta.csv ├── if2dwta.xml ├── ifmem.csv ├── ifmem.xml ├── ifslwta.csv ├── ifslwta.xml ├── linear.csv ├── linear.xml ├── sac.csv ├── sac.xml ├── tmpdiff64.csv └── tmpdiff64.xml ├── expSetup.py ├── pyNCS_testbed.py ├── pyNCS_unittest.py ├── pyST_testbed.py ├── pyST_unittest.py ├── setupfiles ├── test.xml ├── test_performance.xml └── test_setuptype.xml ├── testComAPI.py └── test_performance.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/.gitmodules -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/.pydevproject -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples/examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/examples/examples.txt -------------------------------------------------------------------------------- /docs/examples/reservoir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/examples/reservoir.txt -------------------------------------------------------------------------------- /docs/general/aex_reprogramming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/aex_reprogramming.txt -------------------------------------------------------------------------------- /docs/general/api.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/general/experiments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/experiments.txt -------------------------------------------------------------------------------- /docs/general/hardware_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/hardware_setup.txt -------------------------------------------------------------------------------- /docs/general/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/installation.txt -------------------------------------------------------------------------------- /docs/general/introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/introduction.txt -------------------------------------------------------------------------------- /docs/general/learning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/learning.txt -------------------------------------------------------------------------------- /docs/general/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/license.txt -------------------------------------------------------------------------------- /docs/general/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/modules.txt -------------------------------------------------------------------------------- /docs/general/new_hardware.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/new_hardware.txt -------------------------------------------------------------------------------- /docs/general/pyNCS.AerViewer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pyNCS.AerViewer.txt -------------------------------------------------------------------------------- /docs/general/pyNCS.pyST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pyNCS.pyST.txt -------------------------------------------------------------------------------- /docs/general/pyNCS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pyNCS.txt -------------------------------------------------------------------------------- /docs/general/pyosc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pyosc.txt -------------------------------------------------------------------------------- /docs/general/pyst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pyst.txt -------------------------------------------------------------------------------- /docs/general/pytune.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pytune.txt -------------------------------------------------------------------------------- /docs/general/pytune_plugin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pytune_plugin.txt -------------------------------------------------------------------------------- /docs/general/pytune_python_file_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pytune_python_file_template.txt -------------------------------------------------------------------------------- /docs/general/pytune_xml_file_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/pytune_xml_file_template.txt -------------------------------------------------------------------------------- /docs/general/spcm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/spcm.txt -------------------------------------------------------------------------------- /docs/general/troubleshooting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/troubleshooting.txt -------------------------------------------------------------------------------- /docs/general/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/general/tutorial.txt -------------------------------------------------------------------------------- /docs/images/amda_and_aex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/amda_and_aex.jpg -------------------------------------------------------------------------------- /docs/images/decorated_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/decorated_data.png -------------------------------------------------------------------------------- /docs/images/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/fig1.png -------------------------------------------------------------------------------- /docs/images/mapping_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/mapping_2d.png -------------------------------------------------------------------------------- /docs/images/mapping_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/mapping_all.png -------------------------------------------------------------------------------- /docs/images/meanrate_tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/meanrate_tutorial.png -------------------------------------------------------------------------------- /docs/images/normalized_data_zoomed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/normalized_data_zoomed.png -------------------------------------------------------------------------------- /docs/images/pytune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/pytune.png -------------------------------------------------------------------------------- /docs/images/raster_tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/raster_tutorial.png -------------------------------------------------------------------------------- /docs/images/raw_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/raw_data.png -------------------------------------------------------------------------------- /docs/images/software.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/software.jpg -------------------------------------------------------------------------------- /docs/images/software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/software.png -------------------------------------------------------------------------------- /docs/images/zenzero_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/images/zenzero_setup.png -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/docs/index.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/setup.py -------------------------------------------------------------------------------- /src/pyNCS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/__init__.py -------------------------------------------------------------------------------- /src/pyNCS/api/BaseComAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/BaseComAPI.py -------------------------------------------------------------------------------- /src/pyNCS/api/BaseConfAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/BaseConfAPI.py -------------------------------------------------------------------------------- /src/pyNCS/api/BrianAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/BrianAPI.py -------------------------------------------------------------------------------- /src/pyNCS/api/ComAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/ComAPI.py -------------------------------------------------------------------------------- /src/pyNCS/api/ConfAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/ConfAPI.py -------------------------------------------------------------------------------- /src/pyNCS/api/IFSLWTA_brian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/IFSLWTA_brian_model.py -------------------------------------------------------------------------------- /src/pyNCS/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/__init__.py -------------------------------------------------------------------------------- /src/pyNCS/api/loopbackAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/loopbackAPI.py -------------------------------------------------------------------------------- /src/pyNCS/api/paramTranslation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/api/paramTranslation.py -------------------------------------------------------------------------------- /src/pyNCS/changes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyNCS/chip_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/chip_v2.py -------------------------------------------------------------------------------- /src/pyNCS/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/connection.py -------------------------------------------------------------------------------- /src/pyNCS/data/setup.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/data/setup.dtd -------------------------------------------------------------------------------- /src/pyNCS/data/setuptype.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/data/setuptype.dtd -------------------------------------------------------------------------------- /src/pyNCS/experimentTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/experimentTools.py -------------------------------------------------------------------------------- /src/pyNCS/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/group.py -------------------------------------------------------------------------------- /src/pyNCS/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/mapping.py -------------------------------------------------------------------------------- /src/pyNCS/monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/monitors.py -------------------------------------------------------------------------------- /src/pyNCS/neurosetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/neurosetup.py -------------------------------------------------------------------------------- /src/pyNCS/population.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/population.py -------------------------------------------------------------------------------- /src/pyNCS/pyST/STas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/pyST/STas.py -------------------------------------------------------------------------------- /src/pyNCS/pyST/STsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/pyST/STsl.py -------------------------------------------------------------------------------- /src/pyNCS/pyST/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/pyST/__init__.py -------------------------------------------------------------------------------- /src/pyNCS/pyST/pyST_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/pyST/pyST_globals.py -------------------------------------------------------------------------------- /src/pyNCS/pyST/spikes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/pyST/spikes.py -------------------------------------------------------------------------------- /src/pyNCS/pyST/stgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/src/pyNCS/pyST/stgen.py -------------------------------------------------------------------------------- /test/biases/defaultBiases_if2dwta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/biases/defaultBiases_if2dwta -------------------------------------------------------------------------------- /test/biases/defaultBiases_ifslwta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/biases/defaultBiases_ifslwta -------------------------------------------------------------------------------- /test/chipfiles/if2dwta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/if2dwta.csv -------------------------------------------------------------------------------- /test/chipfiles/if2dwta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/if2dwta.xml -------------------------------------------------------------------------------- /test/chipfiles/ifmem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/ifmem.csv -------------------------------------------------------------------------------- /test/chipfiles/ifmem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/ifmem.xml -------------------------------------------------------------------------------- /test/chipfiles/ifslwta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/ifslwta.csv -------------------------------------------------------------------------------- /test/chipfiles/ifslwta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/ifslwta.xml -------------------------------------------------------------------------------- /test/chipfiles/linear.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/linear.csv -------------------------------------------------------------------------------- /test/chipfiles/linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/linear.xml -------------------------------------------------------------------------------- /test/chipfiles/sac.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/sac.csv -------------------------------------------------------------------------------- /test/chipfiles/sac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/sac.xml -------------------------------------------------------------------------------- /test/chipfiles/tmpdiff64.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/tmpdiff64.csv -------------------------------------------------------------------------------- /test/chipfiles/tmpdiff64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/chipfiles/tmpdiff64.xml -------------------------------------------------------------------------------- /test/expSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/expSetup.py -------------------------------------------------------------------------------- /test/pyNCS_testbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/pyNCS_testbed.py -------------------------------------------------------------------------------- /test/pyNCS_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/pyNCS_unittest.py -------------------------------------------------------------------------------- /test/pyST_testbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/pyST_testbed.py -------------------------------------------------------------------------------- /test/pyST_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/pyST_unittest.py -------------------------------------------------------------------------------- /test/setupfiles/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/setupfiles/test.xml -------------------------------------------------------------------------------- /test/setupfiles/test_performance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/setupfiles/test_performance.xml -------------------------------------------------------------------------------- /test/setupfiles/test_setuptype.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/setupfiles/test_setuptype.xml -------------------------------------------------------------------------------- /test/testComAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/testComAPI.py -------------------------------------------------------------------------------- /test/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inincs/pyNCS/HEAD/test/test_performance.py --------------------------------------------------------------------------------