Skip to content

Commit 066ced2

Browse files
committed
[SYCL][HIP] Remove dup emit-llvm option in tests
1 parent fac2fd8 commit 066ced2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

sycl/test/check_device_code/hip/matrix/matrix-hip-bfloat16-float-test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: hip
2-
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S -Xclang -emit-llvm %s -o -| FileCheck %s
2+
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S %s -o -| FileCheck %s
33

44
#include <sycl/sycl.hpp>
55

@@ -58,4 +58,4 @@ row_col_m32n32k8(sycl::accessor<bfloat16, 1, sycl::access::mode::read_write,
5858
joint_matrix_store(sg, sub_c,
5959
accD.template get_multi_ptr<access::decorated::yes>(), 32,
6060
layout::row_major);
61-
}
61+
}

sycl/test/check_device_code/hip/matrix/matrix-hip-double-double-test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: hip
2-
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S -Xclang -emit-llvm %s -o -| FileCheck %s
2+
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S %s -o -| FileCheck %s
33

44
#include <sycl/sycl.hpp>
55

@@ -31,4 +31,4 @@ row_row_m16n16k4(sycl::accessor<double, 1, sycl::access::mode::read_write,
3131
joint_matrix_store(sg, sub_c,
3232
accD.template get_multi_ptr<access::decorated::yes>(), 16,
3333
layout::row_major);
34-
}
34+
}

sycl/test/check_device_code/hip/matrix/matrix-hip-half-float-test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: hip
2-
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S -Xclang -emit-llvm %s -o -| FileCheck %s
2+
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S %s -o -| FileCheck %s
33

44
#include <sycl/sycl.hpp>
55

@@ -58,4 +58,4 @@ row_col_m32n32k8(sycl::accessor<half, 1, sycl::access::mode::read_write,
5858
joint_matrix_store(sg, sub_c,
5959
accD.template get_multi_ptr<access::decorated::yes>(), 32,
6060
layout::row_major);
61-
}
61+
}

sycl/test/check_device_code/hip/matrix/matrix-hip-int8-int32-test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// REQUIRES: hip
2-
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S -Xclang -emit-llvm %s -o -| FileCheck %s
2+
// RUN: %clangxx -fsycl-device-only -fsycl-targets=amd_gpu_gfx90a -S %s -o -| FileCheck %s
33

44
#include <sycl/sycl.hpp>
55

@@ -58,4 +58,4 @@ row_col_m32n32k8(sycl::accessor<int8_t, 1, sycl::access::mode::read_write,
5858
joint_matrix_store(sg, sub_c,
5959
accD.template get_multi_ptr<access::decorated::yes>(), 32,
6060
layout::row_major);
61-
}
61+
}

0 commit comments

Comments
 (0)