-
Notifications
You must be signed in to change notification settings - Fork 766
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] Update is_compatible tests #17606
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
sycl/test-e2e/OptionalKernelFeatures/is_compatible/is_compatible_amdgcn.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// REQUIRES: target-amd, opencl, gpu, cpu | ||
// UNSUPPORTED: windows | ||
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17515 | ||
// There are no ROCm libs on win machines, so the compilation fails. | ||
|
||
// RUN: %clangxx -fsycl -Xsycl-target-backend=amdgcn-amd-amdhsa --offload-arch=gfx906 -fsycl-targets=amdgcn-amd-amdhsa %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
// RUN: %clangxx -fsycl -fsycl-targets=amdgcn-amd-amdhsa -Xsycl-target-backend=amdgcn-amd-amdhsa --offload-arch=gfx1030 %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
|
||
// RUN: env ONEAPI_DEVICE_SELECTOR=hip:gpu %{run} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:gpu %{run} not %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:cpu %{run} not %t.out | ||
// RUN: %if !hip %{ not %} %{run} %t.out |
8 changes: 4 additions & 4 deletions
8
sycl/test-e2e/OptionalKernelFeatures/is_compatible/is_compatible_nvptx64.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// REQUIRES: target-nvidia, opencl, gpu, cpu | ||
// UNSUPPORTED: windows | ||
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17515 | ||
// There are no CUDA libs on win machines, so the compilation fails. | ||
|
||
// RUN: %clangxx -fsycl -fsycl-targets=nvptx64-nvidia-cuda %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
|
||
// RUN: env ONEAPI_DEVICE_SELECTOR=cuda:gpu %{run} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:gpu %{run} not %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:cpu %{run} not %t.out | ||
// RUN: %if !cuda %{ not %} %{run} %t.out |
12 changes: 7 additions & 5 deletions
12
sycl/test-e2e/OptionalKernelFeatures/is_compatible/is_compatible_several_targets.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
// REQUIRES: ocloc, any-device-is-level_zero, any-device-is-gpu, any-device-is-cpu | ||
// REQUIRES: opencl-aot, ocloc | ||
|
||
// RUN: %clangxx -fsycl -fsycl-targets=spir64_gen -Xsycl-target-backend=spir64_gen "-device *" %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
// UNSUPPORTED: windows | ||
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17515 | ||
// There is no CPU device on win yet, so opencl-aot fails to compile the kernel. | ||
|
||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:cpu %{run-unfiltered-devices} not %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:gpu %{run-unfiltered-devices} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=level_zero:gpu %{run-unfiltered-devices} %t.out | ||
// RUN: %{run-aux} %clangxx -fsycl -fsycl-targets=spir64_x86_64,spir64_gen -Xsycl-target-backend=spir64_gen %gpu_aot_target_opts %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
|
||
// RUN: %if !(level_zero || opencl) %{ not %} %{run} %t.out |
6 changes: 1 addition & 5 deletions
6
sycl/test-e2e/OptionalKernelFeatures/is_compatible/is_compatible_spir64.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
// REQUIRES: cuda, opencl, gpu, cpu | ||
|
||
// RUN: %clangxx -fsycl -fsycl-targets=spir64 %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
|
||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:cpu %{run} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:gpu %{run} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=cuda:gpu %{run} not %t.out | ||
// RUN: %if hip || cuda %{ not %} %{run} %t.out |
8 changes: 3 additions & 5 deletions
8
sycl/test-e2e/OptionalKernelFeatures/is_compatible/is_compatible_spir64_gen.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
// REQUIRES: ocloc, gpu, level_zero, cpu | ||
// REQUIRES: ocloc | ||
|
||
// RUN: %clangxx -fsycl -fsycl-targets=spir64_gen -Xsycl-target-backend "-device *" %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
// RUN: %clangxx -fsycl -fsycl-targets=spir64_gen -Xsycl-target-backend=spir64_gen "-device *" %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
|
||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:gpu %{run} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=level_zero:gpu %{run} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:cpu %{run} not %t.out | ||
// RUN: %if !(level_zero || opencl && gpu) %{ not %} %{run} %t.out |
12 changes: 7 additions & 5 deletions
12
sycl/test-e2e/OptionalKernelFeatures/is_compatible/is_compatible_spir64_x86_64.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
// REQUIRES: opencl-aot, cpu, gpu, level_zero | ||
// REQUIRES: opencl-aot | ||
|
||
// RUN: %clangxx -fsycl -fsycl-targets=spir64_x86_64 %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
// UNSUPPORTED: windows | ||
// UNSUPPORTED-TRACKER: https://github.com/intel/llvm/issues/17515 | ||
// There is no CPU device on win yet, so opencl-aot fails to compile the kernel. | ||
|
||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:cpu %{run} %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=opencl:gpu %{run} not %t.out | ||
// RUN: env ONEAPI_DEVICE_SELECTOR=level_zero:gpu %{run} not %t.out | ||
// RUN: %{run-aux} %clangxx -fsycl -fsycl-targets=spir64_x86_64 %S/Inputs/is_compatible_with_env.cpp -o %t.out | ||
|
||
// RUN: %if !cpu %{ not %} %{run} %t.out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
// requires: cpu, gpu, accelerator | ||
// RUN: %{build} -Wno-error=incorrect-sub-group-size %O0 -o %t.out | ||
// RUN: %{run} %t.out | ||
|
||
|
@@ -7,11 +6,10 @@ | |
|
||
[[sycl::device_has(sycl::aspect::cpu)]] void foo(){}; | ||
[[sycl::device_has(sycl::aspect::gpu)]] void bar(){}; | ||
[[sycl::device_has(sycl::aspect::accelerator)]] void baz(){}; | ||
|
||
class KernelCPU; | ||
class KernelGPU; | ||
class KernelACC; | ||
|
||
class GoodWGSize; | ||
class WrongReqWGSize; | ||
|
||
|
@@ -40,13 +38,6 @@ int main() { | |
Compatible &= Dev.is_gpu(); | ||
Called = true; | ||
} | ||
if (sycl::is_compatible<KernelACC>(Dev)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removing this since there is no chance now to launch this on fpga. |
||
Q.submit( | ||
[&](sycl::handler &h) { h.single_task<KernelACC>([=]() { baz(); }); }); | ||
Q.wait(); | ||
Compatible &= Dev.is_accelerator(); | ||
Called = true; | ||
} | ||
|
||
if (sycl::is_compatible<GoodWGSize>(Dev)) { | ||
Q.submit([&](sycl::handler &h) { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a necessity to specify --offload-arch? it is absent for cuda, maybe can be skipped here either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree it may lead to a failure in the future if we change the hardware, but It looks like currently we don't specify the
offload-arch
automatically, need to extend the testing script. @intel/dpcpp-devops-reviewers am I missing something?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps you could use
%{hip_arch_opts}
see this bit,
llvm/sycl/test-e2e/format.py
Lines 239 to 246 in 0f42c75
Perhaps this could also be guarded by
REQUIRES: any-target-is-amd
instead of doingUNSUPPORTED: windows
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I understand
hip_arch_opts
works only withtarget-amd
, so it won't be substituted otherwise.the intention of this test is to be launched on other than amd platform to check if the
is_compatible<kernel>(dev)
call returnsfalse
if the kernel was built for another device.