lazyarray


Namelazyarray JSON
Version 0.5.2 PyPI version JSON
download
home_pagehttp://github.com/NeuralEnsemble/lazyarray/
Summarya Python package that provides a lazily-evaluated numerical array class, larray, based on and compatible with NumPy arrays.
upload_time2022-01-24 17:12:23
maintainer
docs_urlNone
authorAndrew P. Davison
requires_python
licenseModified BSD
keywords
VCS
bugtrack_url
requirements numpy
Travis-CI
coveralls test coverage No coveralls.
            =========
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
            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/NeuralEnsemble/lazyarray/",
    "name": "lazyarray",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Andrew P. Davison",
    "author_email": "andrew.davison@cnrs.fr",
    "download_url": "https://files.pythonhosted.org/packages/43/ca/bd79c7e5d3c9c917915757dfbfbf3f2b192100d620d222ebb79913decb7f/lazyarray-0.5.2.tar.gz",
    "platform": "",
    "description": "=========\nlazyarray\n=========\n\nlazyarray is a Python package that provides a lazily-evaluated numerical array\nclass, ``larray``, based on and compatible with NumPy arrays.\n\nLazy evaluation means that any operations on the array (potentially including\narray construction) are not performed immediately, but are delayed until\nevaluation is specifically requested. Evaluation of only parts of the array is\nalso possible.\n\nUse of an ``larray`` can potentially save considerable computation time\nand memory in cases where:\n\n* arrays are used conditionally (i.e. there are cases in which the array is\n  never used)\n* only parts of an array are used (for example in distributed computation,\n  in which each MPI node operates on a subset of the elements of the array)\n\n\n.. image:: https://readthedocs.org/projects/lazyarray/badge/?version=latest\n   :target: http://lazyarray.readthedocs.io/en/latest/\n\n.. image:: https://travis-ci.org/NeuralEnsemble/lazyarray.svg?branch=master\n   :target: https://travis-ci.org/NeuralEnsemble/lazyarray/\n\n.. image:: https://coveralls.io/repos/github/NeuralEnsemble/lazyarray/badge.svg?branch=master\n   :target: https://coveralls.io/github/NeuralEnsemble/lazyarray?branch=master",
    "bugtrack_url": null,
    "license": "Modified BSD",
    "summary": "a Python package that provides a lazily-evaluated numerical array class, larray, based on and compatible with NumPy arrays.",
    "version": "0.5.2",
    "project_urls": {
        "Homepage": "http://github.com/NeuralEnsemble/lazyarray/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43cabd79c7e5d3c9c917915757dfbfbf3f2b192100d620d222ebb79913decb7f",
                "md5": "de8f15ba1cbaa3a63544691ddeb60a10",
                "sha256": "fe31804d82115ed7c382840a1708f498419ec1455cac084707ece9908310c7d1"
            },
            "downloads": -1,
            "filename": "lazyarray-0.5.2.tar.gz",
            "has_sig": false,
            "md5_digest": "de8f15ba1cbaa3a63544691ddeb60a10",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 21774,
            "upload_time": "2022-01-24T17:12:23",
            "upload_time_iso_8601": "2022-01-24T17:12:23.030399Z",
            "url": "https://files.pythonhosted.org/packages/43/ca/bd79c7e5d3c9c917915757dfbfbf3f2b192100d620d222ebb79913decb7f/lazyarray-0.5.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-01-24 17:12:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "NeuralEnsemble",
    "github_project": "lazyarray",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.13"
                ]
            ]
        }
    ],
    "lcname": "lazyarray"
}
        
Elapsed time: 0.06808s