Metadata-Version: 2.1
Name: array-adhoc
Version: 0.0.1
Summary: Implements parts of the Python Array API
License: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Provides-Extra: torch
License-File: LICENSE

# array-adhoc

This an ad-hoc implementation of parts of the Python Array API backed by
backends that do not themselves fully implement them.

The purpose is to use those backends with normalized array api code. For
example, using this, you can use pytorch and the python arrays api using the
same interface.

It's ad-hoc because I'm only implementating parts of the spec when I use them,
and I do the implementations barebones.

This could easily improve with some good pull requests.

Wrappers Included:
    - torch

Handoffs Included:
    - cupy
    - numpy

It is easy to add a new wrapper or handoff, you just import the api functions
in a new named file. If time is short, just make a handoff first, and then if
something is missing or wrong or not compatible with old releases, improve it
into a wrapper.

Usage:
```
import array_adhoc.torch as xp

array = xp.asarray([2,4,9])
print(xp.sqrt(array))
```
