|
1 | 1 | # arrayfire-binary-python-wrapper
|
2 | 2 |
|
3 |
| -Arrayfire python C library wrapper |
4 |
| - |
5 |
| -## Coverage |
6 |
| - |
7 |
| -- [x] Computer Vision |
8 |
| -- [x] Events |
9 |
| -- [x] Functions to Create and Modify Arrays |
10 |
| -- [x] Functions to Work with Internal Array Layout |
11 |
| -- [x] Image Processing |
12 |
| - - [x] Features |
13 |
| -- [x] Input and Output Functions |
14 |
| -- [x] Interface Functions |
15 |
| -- [x] Linear Algebra |
16 |
| -- [x] Machine Learning |
17 |
| -- [x] Mathematical Functions |
18 |
| -- [x] Signal Processing |
19 |
| -- [x] Statistics |
20 |
| -- [x] Unified API Functions |
21 |
| -- [x] Vector Algorithms |
| 3 | +[ArrayFire](https://github.com/arrayfire/arrayfire) is a high performance library for parallel computing with an easy-to-use API. It enables users to write scientific computing code that is portable across CUDA, OpenCL and CPU devices. |
| 4 | + |
| 5 | +This project is meant to provide thin Python bindings for the ArrayFire C library. It also decouples releases of the main C/C++ library from the Python library by acting as a intermediate library and only wrapping the provided C calls. |
| 6 | + |
| 7 | +This allows the building of large binary wheels only when the underlying ArrayFire version is increased, and the fully-featured Python library can be developed atop independently. The package is not intended to be used directly and merely exposes the |
| 8 | +C functionality required by downstream implementations. This package can exist in two forms, with a bundled binary distribution, or merely as a loader that will load the ArrayFire library from a system or user level install. |
| 9 | + |
| 10 | +# Installing |
| 11 | + |
| 12 | +The arrayfire-binary-python-wrapper can be installed from a variety of sources. [Pre-built wheels](https://repo.arrayfire.com/python/wheels/3.9.0/) are available for a number of systems and toolkits. These will include a binary distribution of the ArrayFire libraries. Installing from PyPI directly will only include a wrapper-only, source distribution that will not contain binaries. In this case, wrapper-only installations will require a separate installation of the ArrayFire C/C++ libraries. |
| 13 | +You can get the ArrayFire C/C++ library from the following sources: |
| 14 | + |
| 15 | +- [Download and install binaries](https://arrayfire.com/download) |
| 16 | +- [Build and install from source](https://github.com/arrayfire/arrayfire) |
| 17 | + |
| 18 | + |
| 19 | +**Install the last stable version of python wrapper:** |
| 20 | +``` |
| 21 | +pip install arrayfire-binary-python-wrapper |
| 22 | +``` |
| 23 | + |
| 24 | +**Install a pre-built wheel:** |
| 25 | +``` |
| 26 | +pip install arrayfire-binary-python-wrapper -f https://repo.arrayfire.com/python/wheels/3.9.0/ |
| 27 | +``` |
| 28 | + |
| 29 | +# Building |
| 30 | +The arrayfire-binary-python-wrapper can build wheels in packaged-binary or in system-wrapper modes. |
| 31 | +[scikit-build-core](https://github.com/scikit-build/scikit-build-core) is used to provide the python build backend. |
| 32 | +The minimal, wrapper-only mode that relies on a system install will be built by default though the regular python build process. For example: |
| 33 | +``` |
| 34 | +pipx run build --wheel |
| 35 | +``` |
| 36 | +Building a full pre-packaged local binary is an involved process that will require referencing the regular ArrayFire [build](https://github.com/arrayfire/arrayfire/wiki/Build-Instructions-for-Linux) [procedures](https://github.com/arrayfire/arrayfire/wiki/Build-Instructions-for-Windows). |
| 37 | +Besides the regular ArrayFire CMake configuration, building the binaries is an opt-in process that is set by an environment variable `AF_BUILD_LOCAL_LIBS=1`. Once that environment variable is set, scikit-build-core will take care of cloning ArrayFire, building, and including the necessary binaries. |
| 38 | + |
| 39 | + |
| 40 | +# Contributing |
| 41 | + |
| 42 | +The community of ArrayFire developers invites you to build with us if you are |
| 43 | +interested and able to write top-performing tensor functions. Together we can |
| 44 | +fulfill [The ArrayFire |
| 45 | +Mission](https://github.com/arrayfire/arrayfire/wiki/The-ArrayFire-Mission-Statement) |
| 46 | +for fast scientific computing for all. |
| 47 | + |
| 48 | +Contributions of any kind are welcome! Please refer to [the |
| 49 | +wiki](https://github.com/arrayfire/arrayfire/wiki) and our [Code of |
| 50 | +Conduct](33) to learn more about how you can get involved with the ArrayFire |
| 51 | +Community through |
| 52 | +[Sponsorship](https://github.com/arrayfire/arrayfire/wiki/Sponsorship), |
| 53 | +[Developer |
| 54 | +Commits](https://github.com/arrayfire/arrayfire/wiki/Contributing-Code-to-ArrayFire), |
| 55 | +or [Governance](https://github.com/arrayfire/arrayfire/wiki/Governance). |
| 56 | + |
| 57 | +# Citations and Acknowledgements |
| 58 | + |
| 59 | +If you redistribute ArrayFire, please follow the terms established in [the |
| 60 | +license](LICENSE). |
| 61 | + |
| 62 | +ArrayFire development is funded by AccelerEyes LLC and several third parties, |
| 63 | +please see the list of [acknowledgements](ACKNOWLEDGEMENTS.md) for an |
| 64 | +expression of our gratitude. |
| 65 | + |
| 66 | +# Support and Contact Info |
| 67 | + |
| 68 | +* [Slack Chat](https://join.slack.com/t/arrayfire-org/shared_invite/MjI4MjIzMDMzMTczLTE1MDI5ODg4NzYtN2QwNGE3ODA5OQ) |
| 69 | +* [Google Groups](https://groups.google.com/forum/#!forum/arrayfire-users) |
| 70 | +* ArrayFire Services: [Consulting](http://arrayfire.com/consulting) | [Support](http://arrayfire.com/download) | [Training](http://arrayfire.com/training) |
| 71 | + |
| 72 | +# Trademark Policy |
| 73 | + |
| 74 | +The literal mark "ArrayFire" and ArrayFire logos are trademarks of AccelerEyes |
| 75 | +LLC (dba ArrayFire). If you wish to use either of these marks in your own |
| 76 | +project, please consult [ArrayFire's Trademark |
| 77 | +Policy](http://arrayfire.com/trademark-policy/) |
0 commit comments