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
Currently we set the default device as opencl:gpu:0. We should change this to obey DPC++ environment settings. Refer https://github.com/intel/llvm/blob/sycl/sycl/doc/EnvironmentVariables.md
opencl:gpu:0
The text was updated successfully, but these errors were encountered:
Implemented in master:
(idp) [18:30:17 nuc04 dpctl]$ python -c "from dpctl import select_default_device as sdd; sdd().print_device_info()" Name Intel(R) UHD Graphics [0x9bca] Driver version 1.0.19310 Vendor Intel(R) Corporation Profile FULL_PROFILE Device type gpu
(idp) [18:30:29 nuc04 dpctl]$ SYCL_DEVICE_FILTER=cpu python -c "from dpctl import select_default_device as sdd; sdd().print_device_info()" Name Intel(R) Core(TM) i7-10710U CPU @ 1.10GHz Driver version 2021.11.3.0.17_160000 Vendor Intel(R) Corporation Profile FULL_PROFILE Device type cpu
(idp) [18:30:59 nuc04 dpctl]$ SYCL_DEVICE_FILTER=opencl:gpu python -c "from dpctl import select_default_device as sdd; sdd().print_device_info()" Name Intel(R) UHD Graphics [0x9bca] Driver version 21.11.19310 Vendor Intel(R) Corporation Profile FULL_PROFILE Device type gpu
Sorry, something went wrong.
Resolving.
No branches or pull requests
Currently we set the default device as
opencl:gpu:0
. We should change this to obey DPC++ environment settings. Refer https://github.com/intel/llvm/blob/sycl/sycl/doc/EnvironmentVariables.mdThe text was updated successfully, but these errors were encountered: