File: README.rst

package info (click to toggle)
lazyarray 0.5.2-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 228 kB
  • sloc: python: 1,251; makefile: 109
file content (32 lines) | stat: -rw-r--r-- 1,207 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

=========
lazyarray
=========

lazyarray is a Python package that provides a lazily-evaluated numerical array
class, ``larray``, based on and compatible with NumPy arrays.

Lazy evaluation means that any operations on the array (potentially including
array construction) are not performed immediately, but are delayed until
evaluation is specifically requested. Evaluation of only parts of the array is
also possible.

Use of an ``larray`` can potentially save considerable computation time
and memory in cases where:

* arrays are used conditionally (i.e. there are cases in which the array is
  never used)
* only parts of an array are used (for example in distributed computation,
  in which each MPI node operates on a subset of the elements of the array)


.. image:: https://readthedocs.org/projects/lazyarray/badge/?version=latest
   :target: http://lazyarray.readthedocs.io/en/latest/

.. image:: https://travis-ci.org/NeuralEnsemble/lazyarray.svg?branch=master
   :target: https://travis-ci.org/NeuralEnsemble/lazyarray/

.. image:: https://coveralls.io/repos/github/NeuralEnsemble/lazyarray/badge.svg?branch=master
   :target: https://coveralls.io/github/NeuralEnsemble/lazyarray?branch=master