@@ -352,8 +352,9 @@ int run_gemm_example_with_layouts(int argc,
352
352
a_m_k, b_k_n, c_m_n_host_ref);
353
353
const float max_accumulated_value =
354
354
*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);
357
358
pass = ck_tile::check_err (c_m_n_dev_result,
358
359
c_m_n_host_ref,
359
360
" Error: Incorrect results!" ,
@@ -416,8 +417,9 @@ int run_gemm_example_with_layouts(int argc,
416
417
c_m_n_gpu_buf_ref.FromDevice (c_m_n_gpu_ref.data ());
417
418
const float max_accumulated_value =
418
419
*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);
421
423
pass = ck_tile::check_err (c_m_n_dev_result,
422
424
c_m_n_gpu_ref,
423
425
" Error: Incorrect results!" ,
0 commit comments