You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -15,8 +15,8 @@ The ArrayFire Python Project is separated into 3 different parts:
15
15
arrayfire-py -> arrayfire-binary-python-wrapper -> ArrayFire C Libraries
16
16
```
17
17
This means that arrayfire with python each of these parts is needed:
18
-
-[`arrayfire-py`](https://github.com/arrayfire/arrayfire-py) is the `thin` wrapper that provides the numpy-like interface to do math and array operations. *** This is the intended User Interface ***
19
-
-[`arrayfire-binary-python-wrapper`](https://github.com/arrayfire/arrayfire-binary-python-wrapper) is the `binary` wrapper that provides rough direct access to the functions in the C library. Its purpose is to do the handling of finding the C libraries and handling the communication between Python and C datatypes. 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.
18
+
-[`arrayfire-py`](https://github.com/arrayfire/arrayfire-py) is the ***intended User Interface***that provides a numpy-like layer to execute math and array operations with ArrayFire.
19
+
-[`arrayfire-binary-python-wrapper`](https://github.com/arrayfire/arrayfire-binary-python-wrapper) is the thin `binary` wrapper that provides rough direct access to the functions in the C library. Its purpose is to do the handling of finding the C libraries and handling the communication between Python and C datatypes. 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.
20
20
-[`ArrayFire C Libraries`](https://github.com/arrayfire/arrayfire) are the binaries obtained from compiling the [ArrayFire C/C++ Project](https://github.com/arrayfire/arrayfire)
21
21
22
22
# Installing
@@ -29,12 +29,15 @@ You can get the ArrayFire C/C++ library from the following sources:
29
29
30
30
31
31
**Install the last stable version of the binary python wrapper:**
32
-
```
33
-
pip install arrayfire_binary_python_wrapper-0.8.0+af3.10.0-py3-none-linux_x86_64.whl # install required binary wrapper with the 3.10 ArrayFire binaries included
32
+
```sh
33
+
# install binary wrapper from PyPI without binaries
34
+
# assumes ArrayFire binaries will be installed on the system in some other manner
35
+
pip install arrayfire_binary_python_wrapper
34
36
```
35
37
36
38
**Install a pre-built wheel:**
37
-
```
39
+
```sh
40
+
# install binary wrapper with the 3.10 ArrayFire binaries pre-built and included
0 commit comments