-
Notifications
You must be signed in to change notification settings - Fork 788
[SYCL] properly report supported device partitioning in Level-Zero #2751
New issue
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
Conversation
Signed-off-by: Sergey V Maslov <[email protected]>
Signed-off-by: Sergey V Maslov <[email protected]>
Signed-off-by: Sergey V Maslov <[email protected]>
run_on_host_intel2 is a known issue which is being fixed in #2766 |
@smaslov-intel Can we wait until #2766 is merged or we need this ASAP? |
It can wait. |
I think #2766 can be merged right away to unblock pre-commit testing of other PRs. |
#2766 merged, can you please rebase this PR. |
Or just re-run sycl-win-x64-pr job. |
Make adhere to SYCL spec:
[info::device::partition_properties]: returns the partition properties
supported by this SYCL device; a vector of info::partition_property. If this
SYCL device cannot be partitioned into at least two sub devices then the
returned vector must be empty.
[create_sub_devices()]: If the SYCL device
does not support info::partition_property::partition_by_affinity_domain or the
SYCL device does not support the info::partition_affinity_domain provided, an
exception with the feature_not_supported error code must be thrown.
Signed-off-by: Sergey V Maslov [email protected]