Skip to content

[SYCL][InvokeSimd] Fix two XFAIL tests #14906

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

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
// RUN: not %{build} -fno-sycl-device-code-split-esimd -Xclang -fsycl-allow-func-ptr %s -o %t.out 2>&1 | FileCheck
// RUN: not %{build} -fno-sycl-device-code-split-esimd -Xclang -fsycl-allow-func-ptr %s -o %t.out 2>&1 | FileCheck %s
//
// TODO FIXME: Currently compile fail with "no or multiple invoke_simd targets
// found"
// XFAIL: gpu
/*
* Test case specification: Test and report errors if reference argument is
* passed to invoked ESIMD function
Expand Down Expand Up @@ -79,7 +76,7 @@ int main(void) {

float res = invoke_simd(sg, SIMD_CALLEE<int_ref>, uniform{A},
B[wi_id], uniform{i});
// CHECK: TODO FIXME
// CHECK: invoke_simd does not support callables with reference arguments
C[wi_id] = res;
});
});
Expand Down

This file was deleted.

Loading