Skip to content

Commit 3781eeb

Browse files
authored
Fix eval multiple (#16)
* Fix eval multiple. Refactor backend * Fix to list comprehaension
1 parent 17a88c3 commit 3781eeb

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed

arrayfire_wrapper/_backend.py

+5-12
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,13 @@ def _get_backend_path_config() -> _BackendPathConfig:
4949
platform_name = platform.system()
5050
cuda_found = False
5151

52-
# try to use user provided AF_PATH if explicitly set
53-
try:
54-
af_path = Path(os.environ["AF_PATH"])
55-
af_is_user_path = True
56-
except KeyError:
57-
af_path = None
58-
af_is_user_path = False
52+
# Try to use user provided AF_PATH if explicitly set
53+
af_path = os.environ.get("AF_PATH", None)
54+
af_is_user_path = af_path is not None
5955

60-
try:
61-
cuda_path = Path(os.environ["CUDA_PATH"])
62-
except KeyError:
63-
cuda_path = None
56+
cuda_path = os.environ.get("CUDA_PATH", None)
6457

65-
# try to find default arrayfire installation paths
58+
# Try to find default arrayfire installation paths
6659
if platform_name == _SupportedPlatforms.windows.value or _SupportedPlatforms.is_cygwin(platform_name):
6760
if platform_name == _SupportedPlatforms.windows.value:
6861
# HACK Supressing crashes caused by missing dlls

arrayfire_wrapper/lib/create_and_modify_array/manage_array.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ def eval_multiple(num: int, /, *arrs: AFArray) -> None:
9393
"""
9494
source: https://arrayfire.org/docs/group__c__api__mat.htm#ga9e08f4cda2471a477d2fa91c2356f72c
9595
"""
96-
call_from_clib(eval_multiple.__name__, ctypes.c_int(num), ctypes.pointer(arrs))
96+
ctypes_arrs = (ctypes.c_void_p * num)(*[arr for arr in arrs])
97+
98+
call_from_clib(eval_multiple.__name__, ctypes.c_int(num), ctypes.pointer(ctypes_arrs))
9799
return None
98100

99101

0 commit comments

Comments
 (0)