Skip to content

Commit 4ed4383

Browse files
committed
style: format client examples with clang-format
1 parent 62f990d commit 4ed4383

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

example/ck_tile/03_gemm/run_gemm_example.inc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,8 +352,9 @@ int run_gemm_example_with_layouts(int argc,
352352
a_m_k, b_k_n, c_m_n_host_ref);
353353
const float max_accumulated_value =
354354
*std::max_element(c_m_n_host_ref.mData.begin(), c_m_n_host_ref.mData.end());
355-
const auto rtol_atol = ck_tile::calculate_rtol_atol<ADataType, BDataType, AccDataType, CDataType>(
356-
K, kbatch, max_accumulated_value);
355+
const auto rtol_atol =
356+
ck_tile::calculate_rtol_atol<ADataType, BDataType, AccDataType, CDataType>(
357+
K, kbatch, max_accumulated_value);
357358
pass = ck_tile::check_err(c_m_n_dev_result,
358359
c_m_n_host_ref,
359360
"Error: Incorrect results!",
@@ -416,8 +417,9 @@ int run_gemm_example_with_layouts(int argc,
416417
c_m_n_gpu_buf_ref.FromDevice(c_m_n_gpu_ref.data());
417418
const float max_accumulated_value =
418419
*std::max_element(c_m_n_gpu_ref.mData.begin(), c_m_n_gpu_ref.mData.end());
419-
const auto rtol_atol = ck_tile::calculate_rtol_atol<ADataType, BDataType, AccDataType, CDataType>(
420-
K, kbatch, max_accumulated_value);
420+
const auto rtol_atol =
421+
ck_tile::calculate_rtol_atol<ADataType, BDataType, AccDataType, CDataType>(
422+
K, kbatch, max_accumulated_value);
421423
pass = ck_tile::check_err(c_m_n_dev_result,
422424
c_m_n_gpu_ref,
423425
"Error: Incorrect results!",

0 commit comments

Comments
 (0)