datar-numpy

The numpy backend for datar.

MIT License

Stars
5

datar-numpy

The numpy backend for datar.

Note that only base APIs are implemented.

Installation

pip install -U datar-numpy
# or
pip install -U datar[numpy]

Usage

from datar.base import ceiling

# without it
ceiling(1.2)  # NotImplementedByCurrentBackendError

# with it
ceiling(1.2)  # 2