Skip to content

Commit 40fd99a

Browse files
code clean up
1 parent 950f693 commit 40fd99a

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_arg_dim.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@
88
// REQUIRES: aspect-ext_intel_matrix
99
// XFAIL: arch-intel_gpu_pvc
1010

11-
// RUN: %{build} -o %t_arg_dim_vnni.out -ffp-model=precise -DARG_DIM -DVNNI
11+
// RUN: %{build} -o %t_arg_dim_vnni.out %fp-model-precise -DARG_DIM -DVNNI
1212
// RUN: %{run} %t_arg_dim_vnni.out
1313

14-
// RUN: %{build} -o %t_arg_dim.out -ffp-model=precise -DARG_DIM
15-
// RUN: %{run} %t_arg_dim.out
16-
1714
// -ffp-model=precise is added to not depend on compiler defaults.
1815

1916
#include "common.hpp"

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_impl.hpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,8 @@ void test(size_t matrix_size_input) {
395395
// run testIterations time, aggregate and calculate average run time
396396
double totalDuration = 0;
397397
for (unsigned int i = 0; i < testIterations; i++) {
398-
399-
double duration =
400-
joint_matmul<
398+
double duration =
399+
joint_matmul<
401400
#if !defined(ARG_DIM) && !defined(RUNTIME_DIM)
402401
matrix_size, matrix_size, matrix_size, matrix_size,
403402
#endif // ARG_DIM, RUNTIME_DIM
@@ -438,7 +437,6 @@ int main(
438437

439438
size_t matrix_size = -1;
440439
#ifdef RUNTIME_DIM
441-
// Check for command line argument
442440
if (argc == 2) {
443441
matrix_size = std::stoul(argv[1]);
444442
} else {

sycl/test-e2e/Matrix/joint_matrix_bf16_fill_k_cache_runtime_dim.cpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@
88
// REQUIRES: aspect-ext_intel_matrix
99
// XFAIL: arch-intel_gpu_pvc
1010

11-
// RUN: %{build} -o %t_runtime_dim_vnni.out -ffp-model=precise -DRUNTIME_DIM -DVNNI
11+
// RUN: %{build} -o %t_runtime_dim_vnni.out %fp-model-precise -DRUNTIME_DIM -DVNNI
1212
// RUN: %{run} %t_runtime_dim_vnni.out 256
1313

14-
// RUN: %{build} -o %t_runtime_dim.out -ffp-model=precise -DRUNTIME_DIM
15-
// RUN: %{run} %t_runtime_dim.out 256
16-
1714
// -ffp-model=precise is added to not depend on compiler defaults.
1815

1916
#include "common.hpp"

0 commit comments

Comments
 (0)