We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On (Linux) CUDA machine, the backend returned by af.get_backend() remains at unified even if the backend is correctly set as OpenCL. af.get_active_backend() correctly returns OpenCL as the backend, but since the interoperability functions use different way to check the backend, an error is output (see https://github.com/arrayfire/arrayfire-python/blob/master/arrayfire/opencl.py#L107). Commenting all those instances fixes the issue. The (commented) tests reproduce this error, i.e. https://github.com/arrayfire/arrayfire-python/blob/master/tests/simple/interop.py#L82
af.get_backend()
af.get_active_backend()
Note that this wasn't an issue on a (Windows) AMD machine, where OpenCL is the default backend.
The text was updated successfully, but these errors were encountered:
I get it too
>>> af.get_active_backend() 'opencl' >>> af.get_backend() 'unified' >>> af.set_backend("opencl") >>> af.get_backend() 'unified'
Sorry, something went wrong.
No branches or pull requests
On (Linux) CUDA machine, the backend returned by
af.get_backend()
remains at unified even if the backend is correctly set as OpenCL.af.get_active_backend()
correctly returns OpenCL as the backend, but since the interoperability functions use different way to check the backend, an error is output (see https://github.com/arrayfire/arrayfire-python/blob/master/arrayfire/opencl.py#L107). Commenting all those instances fixes the issue. The (commented) tests reproduce this error, i.e. https://github.com/arrayfire/arrayfire-python/blob/master/tests/simple/interop.py#L82Note that this wasn't an issue on a (Windows) AMD machine, where OpenCL is the default backend.
The text was updated successfully, but these errors were encountered: