Skip to content

Commit 7607b59

Browse files
committed
move unified functions to Backend class
1 parent 9694bfa commit 7607b59

File tree

4 files changed

+47
-92
lines changed

4 files changed

+47
-92
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# arrayfire-binary-python-wrapper
22

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-
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.
5-
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. This package is not intended to be used directly and merely exposes the
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
68
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.
79

810
# Installing

arrayfire_wrapper/_backend.py

+42-11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import os
66
import platform
77
import sys
8+
from arrayfire_wrapper.defines import AFArray
89
from dataclasses import dataclass
910
from enum import Enum
1011
from pathlib import Path
@@ -13,7 +14,6 @@
1314

1415
from .defines import is_arch_x86
1516
from .version import ARRAYFIRE_VER_MAJOR
16-
from arrayfire_wrapper.lib.unified_api_functions import set_backend as unified_set_backend
1717

1818
VERBOSE_LOADS = os.environ.get("AF_VERBOSE_LOADS", "") == "1"
1919

@@ -149,7 +149,7 @@ def _find_site_local_path() -> Path:
149149
print( lpath)
150150
print( lpath / module_name / "binaries")
151151
return lpath / module_name / "binaries"
152-
raise ValueError("No binaries detected in site path.")
152+
raise RuntimeError("No binaries detected in site path.")
153153

154154
def _find_default_path(*args: str) -> Path:
155155
for path in args:
@@ -183,15 +183,14 @@ def __init__(self) -> None:
183183
self._load_backend_libs()
184184
self._load_forge_lib()
185185

186-
def set_backend(self, backend_type : BackendType) -> None:
186+
def _change_backend(self, backend_type : BackendType) -> None:
187187
# if unified is available, do dynamic module loading through libaf
188188
if self._backend_type == BackendType.unified:
189+
from arrayfire_wrapper.lib.unified_api_functions import set_backend as unified_set_backend
189190
try:
190191
unified_set_backend(backend_type)
191-
except RuntimeError:
192-
if VERBOSE_LOADS:
193-
print(f"Unable to change backend using unified loader")
194-
raise RuntimeError
192+
except RuntimeError as e:
193+
print(f"Unable to change backend using unified loader: {str(e)}")
195194
# if unified not available
196195
else:
197196
if backend_type in self._clibs:
@@ -272,9 +271,10 @@ def _lib_names(self, name: str, lib: _LibPrefixes, ver_major: str | None = None)
272271
try:
273272
local_path = _find_site_local_path()
274273
lib_paths.append(local_path / lib_name)
275-
except ValueError as e:
274+
except RuntimeError as e:
276275
if VERBOSE_LOADS:
277-
print(str(e))
276+
print(f"Moving on to system libraries, site local load failed due to: {str(e)}")
277+
pass
278278

279279
if self._backend_path_config.af_path: # prefer specified AF_PATH if exists
280280
lib64_path = self._backend_path_config.af_path / "lib64"
@@ -293,6 +293,38 @@ def _find_nvrtc_builtins_lib_name(self, search_path: Path) -> str | None:
293293
return f.name
294294
return None
295295

296+
297+
# unified backend functions
298+
def get_active_backend(self) -> str:
299+
if self._backend_type == BackendType.unified:
300+
from arrayfire_wrapper.lib.unified_api_functions import get_active_backend as unified_get_active_backend
301+
return unified_get_active_backend()
302+
raise RuntimeError("Using unified function on non-unified backend")
303+
304+
def get_available_backends(self) -> list[int]:
305+
if self._backend_type == BackendType.unified:
306+
from arrayfire_wrapper.lib.unified_api_functions import get_available_backends as unified_get_available_backends
307+
return unified_get_available_backends()
308+
raise RuntimeError("Using unified function on non-unified backend")
309+
310+
def get_backend_count(self) -> int:
311+
if self._backend_type == BackendType.unified:
312+
from arrayfire_wrapper.lib.unified_api_functions import get_backend_count as unified_get_backend_count
313+
return unified_get_backend_count()
314+
raise RuntimeError("Using unified function on non-unified backend")
315+
316+
def get_backend_id(self, arr: AFArray, /) -> int:
317+
if self._backend_type == BackendType.unified:
318+
from arrayfire_wrapper.lib.unified_api_functions import get_backend_id as unified_get_backend_id
319+
return unified_get_backend_id(arr)
320+
raise RuntimeError("Using unified function on non-unified backend")
321+
322+
def get_device_id(self, arr: AFArray, /) -> int:
323+
if self._backend_type == BackendType.unified:
324+
from arrayfire_wrapper.lib.unified_api_functions import get_device_id as unified_get_device_id
325+
return unified_get_device_id(arr)
326+
raise RuntimeError("Using unified function on non-unified backend")
327+
296328
@property
297329
def backend_type(self) -> BackendType:
298330
return self._backend_type
@@ -319,10 +351,9 @@ def get_backend() -> Backend:
319351
return __backend
320352

321353
def set_backend(backend_type : BackendType) -> None:
322-
323354
try:
324355
backend = get_backend()
325-
backend.set_backend(backend_type)
356+
backend._change_backend(backend_type)
326357
except RuntimeError:
327358
print(f"Requested backend {backend_type.name} could not be found")
328359

arrayfire_wrapper/lib/__init__.py

-20
Original file line numberDiff line numberDiff line change
@@ -906,26 +906,6 @@
906906
approx2_v2,
907907
)
908908

909-
# Unified API functions
910-
911-
__all__ += [
912-
"get_active_backend",
913-
"get_available_backends",
914-
"get_backend_count",
915-
"get_backend_id",
916-
"get_device_id",
917-
"set_backend",
918-
]
919-
920-
from .unified_api_functions import (
921-
get_active_backend,
922-
get_available_backends,
923-
get_backend_count,
924-
get_backend_id,
925-
get_device_id,
926-
set_backend,
927-
)
928-
929909
# Events
930910

931911
__all__ += ["AFEvent", "block_event", "create_event", "delete_event", "enqueue_wait_event", "mark_event"]

arrayfire_wrapper/lib/unified_api_functions.py

-58
This file was deleted.

0 commit comments

Comments
 (0)