Skip to content

Commit 17a88c3

Browse files
authored
adds scikit core to build arrayfire binaries (#12)
* adds scikit core to build arrayfire binaries * export set_backend * enable source builds without binaries * adds README with build instructions * move unified functions to Backend class * temporary revert hasattr * black formatting * _backend import order * unused import _backend.py
1 parent d63ede5 commit 17a88c3

9 files changed

+326
-140
lines changed

CMakeLists.txt

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
cmake_minimum_required(VERSION 3.20)
2+
3+
project(
4+
${SKBUILD_PROJECT_NAME}
5+
LANGUAGES C CXX
6+
VERSION ${SKBUILD_PROJECT_VERSION})
7+
8+
find_package(Python COMPONENTS Interpreter Development.Module)
9+
10+
11+
if(DEFINED ENV{AF_BUILD_LOCAL_LIBS})
12+
include(FetchContent)
13+
14+
#set(NO_SONAME)
15+
FetchContent_Declare(
16+
arrayfire
17+
GIT_REPOSITORY https://github.com/arrayfire/arrayfire.git
18+
GIT_TAG v3.9
19+
)
20+
#TODO: change package name to match repository/project name?
21+
#set(AF_INSTALL_CMAKE_DIR "${SKBUILD_PROJECT_NAME}")
22+
23+
set(AF_INSTALL_BIN_DIR "arrayfire_wrapper/binaries")
24+
set(AF_INSTALL_CMAKE_DIR "arrayfire_wrapper/binaries")
25+
set(AF_INSTALL_DOC_DIR "arrayfire_wrapper/binaries")
26+
set(AF_INSTALL_EXAMPLE_DIR "arrayfire_wrapper/binaries")
27+
set(AF_INSTALL_INC_DIR "arrayfire_wrapper/binaries")
28+
set(AF_INSTALL_LIB_DIR "arrayfire_wrapper/binaries")
29+
set(FG_INSTALL_LIB_DIR "arrayfire_wrapper/binaries")
30+
31+
FetchContent_MakeAvailable(arrayfire)
32+
endif()
33+
34+
# Testing artifacts
35+
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/generated.txt "Testing")
36+
install(
37+
FILES ${CMAKE_CURRENT_BINARY_DIR}/generated.txt
38+
DESTINATION arrayfire_wrapper
39+
COMPONENT Generated)
40+
41+
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/generated_ignored.txt "Testing")
42+
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/generated_ignored.txt
43+
DESTINATION arrayfire_wrapper)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2023, Anton
3+
Copyright (c) 2023, ArrayFire
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions are met:

README.md

+75-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,77 @@
11
# arrayfire-binary-python-wrapper
22

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/)

arrayfire_wrapper/__init__.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
"Backend",
1818
"BackendType",
1919
"get_backend",
20+
"set_backend",
2021
]
21-
from ._backend import Backend, BackendType, get_backend
22+
from ._backend import Backend, BackendType, get_backend, set_backend
2223

2324
__all__ += [
2425
"Dtype",

0 commit comments

Comments
 (0)