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
It should be possible to create queues for all types of SYCL devices including cuda and host
cuda
host
The text was updated successfully, but these errors were encountered:
This has been implemented:
(idp) [14:18:33 ansatnuc04 dpctl]$ SYCL_ENABLE_HOST_DEVICE=1 python -c "import dpctl; print(dpctl.__version__); print(dpctl.SyclDevice('host:0'))" 0.8.0a0+22.gb3dac2f <dpctl.SyclDevice [backend_type.host, device_type.host_device, SYCL host device] at 0x7f347c203170>
Sorry, something went wrong.
Same with queue:
(idp) [14:18:48 ansatnuc04 dpctl]$ SYCL_ENABLE_HOST_DEVICE=1 python -c "import dpctl; print(dpctl.__version__); print(dpctl.SyclQueue('host:0'))" 0.8.0a0+22.gb3dac2f <dpctl.SyclQueue at 0x7f959251e550>
The feature works as long as the proper DPC++ tool chain is installed. Refer getting started guide.
Successfully merging a pull request may close this issue.
It should be possible to create queues for all types of SYCL devices including
cuda
andhost
The text was updated successfully, but these errors were encountered: