Skip to content

Commit 68f3e23

Browse files
committed
[SYCL][E2E] Document undefined symbol tests for CUDA/HIP
1 parent 03c2469 commit 68f3e23

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

sycl/test-e2e/KernelAndProgram/build-log.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// for CUDA and HIP the failure happens at compile time, not during runtime
21
// UNSUPPORTED: target-nvidia || target-amd
2+
// UNSUPPORTED-INTENDED: The test looks for an exception thrown during the
3+
// compilation of the kernel, but for CUDA the failure is not thrown, but comes
4+
// form ptxas that crashes clang. The JIT part is not relevant, because the
5+
// flow is such that the AOT compilation still happens, it’s just that if we
6+
// request JIT, it will do the thing again at the run time.
7+
//
38
// TODO: rewrite this into a unit-test
49

510
// RUN: %{build} -DGPU -o %t_gpu.out

sycl/test-e2e/KernelAndProgram/cache-build-result.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
// for CUDA and HIP the failure happens at compile time, not during runtime
2-
// UNSUPPORTED: target-nvidia || target-amd || ze_debug
1+
// UNSUPPORTED: target-nvidia || target-amd
2+
// UNSUPPORTED-INTENDED: The test looks for an exception thrown during the
3+
// compilation of the kernel, but for CUDA the failure is not thrown, but comes
4+
// form ptxas that crashes clang. The JIT part is not relevant, because the
5+
// flow is such that the AOT compilation still happens, it’s just that if we
6+
// request JIT, it will do the thing again at the run time.
7+
//
8+
// UNSUPPORTED: ze_debug
39

410
// RUN: %{build} -DSYCL_DISABLE_FALLBACK_ASSERT=1 -o %t.out
511
// RUN: %{build} -DSYCL_DISABLE_FALLBACK_ASSERT=1 -DGPU -o %t_gpu.out

sycl/test-e2e/KernelAndProgram/undefined-symbol.cpp

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
// for CUDA and HIP the failure happens at compile time, not during runtime
21
// UNSUPPORTED: target-nvidia || target-amd
3-
2+
// UNSUPPORTED-INTENDED: The test looks for an exception thrown during the
3+
// compilation of the kernel, but for CUDA the failure is not thrown, but comes
4+
// form ptxas that crashes clang. The JIT part is not relevant, because the
5+
// flow is such that the AOT compilation still happens, it’s just that if we
6+
// request JIT, it will do the thing again at the run time.
7+
//
48
// RUN: %{build} -o %t.out
59
// RUN: %{run} %t.out
610
//

sycl/test/e2e_test_requirements/no-unsupported-without-info.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,6 @@
208208
// CHECK-NEXT: InvokeSimd/Feature/popcnt.cpp
209209
// CHECK-NEXT: InvokeSimd/Regression/ImplicitSubgroup/call_vadd_1d_spill.cpp
210210
// CHECK-NEXT: InvokeSimd/Regression/call_vadd_1d_spill.cpp
211-
// CHECK-NEXT: KernelAndProgram/build-log.cpp
212-
// CHECK-NEXT: KernelAndProgram/cache-build-result.cpp
213211
// CHECK-NEXT: KernelAndProgram/free_function_apis.cpp
214212
// CHECK-NEXT: KernelAndProgram/free_function_kernels.cpp
215213
// CHECK-NEXT: KernelAndProgram/kernel-bundle-merge-options-env.cpp
@@ -218,7 +216,6 @@
218216
// CHECK-NEXT: KernelAndProgram/multiple-kernel-linking.cpp
219217
// CHECK-NEXT: KernelAndProgram/spec_constants_after_link.cpp
220218
// CHECK-NEXT: KernelAndProgram/spec_constants_after_link.cpp
221-
// CHECK-NEXT: KernelAndProgram/undefined-symbol.cpp
222219
// CHECK-NEXT: Matrix/SG32/element_wise_abc.cpp
223220
// CHECK-NEXT: Matrix/SG32/element_wise_all_ops.cpp
224221
// CHECK-NEXT: Matrix/SG32/element_wise_all_ops_half.cpp

0 commit comments

Comments
 (0)