File: control

package info (click to toggle)
lazyarray 0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 228 kB
  • sloc: python: 1,194; makefile: 108
file content (33 lines) | stat: -rw-r--r-- 1,501 bytes parent folder | download
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
33
Source: lazyarray
Maintainer: Debian Science Maintainers <debian-science-maintainers@lists.alioth.debian.org>
Uploaders: Michael Hanke <mih@debian.org>, Yaroslav Halchenko <yoh@debian.org>
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper-compat (= 12),
               dh-python,
               python3-all,
               python3-nose <!nocheck>,
               python3-numpy <!nocheck>,
               python3-scipy <!nocheck>
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/science-team/lazyarray
Vcs-Git: https://salsa.debian.org/science-team/lazyarray.git
Homepage: https://bitbucket.org/apdavison/lazyarray/
Rules-Requires-Root: no

Package: python3-lazyarray
Architecture: all
Depends: ${misc:Depends},
         ${python3:Depends},
         python3-numpy,
         python3-scipy
Description: 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).