├── .dir-locals.el ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.rst ├── bin └── csv2p7 ├── include ├── layer9 │ └── predict.h └── wired │ ├── array.h │ ├── op.h │ ├── scalar.h │ └── utils.h ├── layer9-example ├── main.cc ├── observations.csv └── samples.csv ├── psyche ├── README.rst ├── psyche │ ├── __init__.py │ ├── _numpy_template.inc │ ├── _wired_template.inc │ ├── compiler.py │ ├── compute.py │ ├── dsl.py │ ├── nodes.py │ ├── testing.py │ └── utils.py └── setup.py └── tests ├── test_array_1d.py ├── test_array_2d.py └── test_scalar.py /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/README.rst -------------------------------------------------------------------------------- /bin/csv2p7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/bin/csv2p7 -------------------------------------------------------------------------------- /include/layer9/predict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/include/layer9/predict.h -------------------------------------------------------------------------------- /include/wired/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/include/wired/array.h -------------------------------------------------------------------------------- /include/wired/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/include/wired/op.h -------------------------------------------------------------------------------- /include/wired/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/include/wired/scalar.h -------------------------------------------------------------------------------- /include/wired/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/include/wired/utils.h -------------------------------------------------------------------------------- /layer9-example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/layer9-example/main.cc -------------------------------------------------------------------------------- /layer9-example/observations.csv: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 1 4 | 0 5 | -------------------------------------------------------------------------------- /layer9-example/samples.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/layer9-example/samples.csv -------------------------------------------------------------------------------- /psyche/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/README.rst -------------------------------------------------------------------------------- /psyche/psyche/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/__init__.py -------------------------------------------------------------------------------- /psyche/psyche/_numpy_template.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/_numpy_template.inc -------------------------------------------------------------------------------- /psyche/psyche/_wired_template.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/_wired_template.inc -------------------------------------------------------------------------------- /psyche/psyche/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/compiler.py -------------------------------------------------------------------------------- /psyche/psyche/compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/compute.py -------------------------------------------------------------------------------- /psyche/psyche/dsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/dsl.py -------------------------------------------------------------------------------- /psyche/psyche/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/nodes.py -------------------------------------------------------------------------------- /psyche/psyche/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/testing.py -------------------------------------------------------------------------------- /psyche/psyche/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/psyche/utils.py -------------------------------------------------------------------------------- /psyche/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/psyche/setup.py -------------------------------------------------------------------------------- /tests/test_array_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/tests/test_array_1d.py -------------------------------------------------------------------------------- /tests/test_array_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/tests/test_array_2d.py -------------------------------------------------------------------------------- /tests/test_scalar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llllllllll/wired/HEAD/tests/test_scalar.py --------------------------------------------------------------------------------