├── .github └── workflows │ ├── requirements-middle.txt │ ├── requirements-newest.txt │ ├── requirements-oldest.txt │ └── test.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── changelog.txt ├── doc ├── Makefile ├── conf.py ├── developers.txt ├── index.txt ├── installation.txt ├── make.bat ├── performance.txt ├── reference.txt └── tutorial.txt ├── lazyarray.py ├── pyproject.toml ├── setup.py └── test ├── __init__.py ├── performance.py ├── test_lazy_arrays_from_Sparse_Matrices.py ├── test_lazyarray.py └── test_ufunc.py /.github/workflows/requirements-middle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/.github/workflows/requirements-middle.txt -------------------------------------------------------------------------------- /.github/workflows/requirements-newest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/.github/workflows/requirements-newest.txt -------------------------------------------------------------------------------- /.github/workflows/requirements-oldest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/.github/workflows/requirements-oldest.txt -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/README.rst -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/changelog.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/developers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/developers.txt -------------------------------------------------------------------------------- /doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/index.txt -------------------------------------------------------------------------------- /doc/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/installation.txt -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/performance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/performance.txt -------------------------------------------------------------------------------- /doc/reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/reference.txt -------------------------------------------------------------------------------- /doc/tutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/doc/tutorial.txt -------------------------------------------------------------------------------- /lazyarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/lazyarray.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/test/performance.py -------------------------------------------------------------------------------- /test/test_lazy_arrays_from_Sparse_Matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/test/test_lazy_arrays_from_Sparse_Matrices.py -------------------------------------------------------------------------------- /test/test_lazyarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/test/test_lazyarray.py -------------------------------------------------------------------------------- /test/test_ufunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralEnsemble/lazyarray/HEAD/test/test_ufunc.py --------------------------------------------------------------------------------