Skip to content
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

[SYCL][E2E] Disable select_device.cpp on Arc GPU #12808

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sycl/test-e2e/Config/select_device.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// REQUIRES: gpu
// Post-commit fails due to a bug in test, will fix in a couple of days.
// UNSUPPORTED: gpu-intel-dg2
// RUN: %{build} -o %t.out
//
// RUN: env ONEAPI_DEVICE_SELECTOR="*:gpu" %{run-unfiltered-devices} %t.out DEVICE_INFO write > %t.txt
Expand Down Expand Up @@ -159,6 +161,8 @@ static std::vector<DevDescT> getAllowListDesc(std::string allowList) {
}

else if (allowList.find('|', pos) != std::string::npos) {
// FIXME: That is wrong and result in a infinite loop. We start processing
// the string from the start here.
pos = allowList.find('|') + 1;
while (allowList[pos] == ' ') {
pos++;
Expand Down
Loading