lazyarray 0.1.0-1 source package in Ubuntu

Changelog

lazyarray (0.1.0-1) unstable; urgency=low


  * Initial Debian release (Closes: #664022).

 -- Michael Hanke <email address hidden>  Thu, 15 Mar 2012 13:42:09 +0100

Upload details

Uploaded by:
NeuroDebian Team
Uploaded to:
Sid
Original maintainer:
NeuroDebian Team
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe python
Xenial release universe python
Trusty release universe python

Builds

Quantal: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
lazyarray_0.1.0-1.dsc 1.9 KiB 4bdfd31666947f80922d0d94c9149e4a5dccb46cec7256406e2013c0ee6e57ea
lazyarray_0.1.0.orig.tar.gz 11.5 KiB b8f4cd357c9d25b182f8f5100ac28a9ec342c705db9b511279150037de2bad50
lazyarray_0.1.0-1.debian.tar.gz 2.0 KiB 4df6ebe958e77a11160a812653ac1ee4d9fbe821e9b66543f889d9efff7e95e5

No changes file available.

Binary packages built by this source

python-lazyarray: Python module providing a NumPy-compatible lazily-evaluated array

 The 'larray' class is a NumPy-compatible numerical array where 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. Consequently,
 use of an 'larray' can potentially save considerable computation time
 and memory in cases where arrays are used conditionally, or 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).