Skip to content

Commit

Permalink
[SYCL][E2E] Disable select_device.cpp on Arc GPU (#12808)
Browse files Browse the repository at this point in the history
Started to fail in post commit after
intel/llvm#12719. This looks like a pre-existing
bug in the test so I'm going to temporarily disable the test instead of
reverting. Will work on the fix with highest priority after that.
  • Loading branch information
aelovikov-intel authored Feb 23, 2024
1 parent 6e3aa21 commit 5a92a19
Showing 1 changed file with 4 additions and 0 deletions.
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

0 comments on commit 5a92a19

Please sign in to comment.