diff --git a/clients/include/testing_gemm_ex.hpp b/clients/include/testing_gemm_ex.hpp index 50dcab7f5..a22cd52df 100644 --- a/clients/include/testing_gemm_ex.hpp +++ b/clients/include/testing_gemm_ex.hpp @@ -589,9 +589,9 @@ void testing_gemm_ex(const Arguments& arg) dC, arg.c_type, ldc, - dC, - arg.c_type, - ldc, + dD, + arg.d_type, + ldd, arg.compute_type, algo, solution_index, @@ -618,9 +618,9 @@ void testing_gemm_ex(const Arguments& arg) dC, arg.c_type, ldc, - dC, - arg.c_type, - ldc, + dD, + arg.d_type, + ldd, arg.compute_type, algo, solution_index, diff --git a/clients/include/testing_gemm_strided_batched_ex.hpp b/clients/include/testing_gemm_strided_batched_ex.hpp index 283d3fa89..dc7dbd52f 100644 --- a/clients/include/testing_gemm_strided_batched_ex.hpp +++ b/clients/include/testing_gemm_strided_batched_ex.hpp @@ -759,10 +759,10 @@ void testing_gemm_strided_batched_ex(const Arguments& arg) arg.c_type, ldc, stride_c, - dC, - arg.c_type, - ldc, - stride_c, + dD, + arg.d_type, + ldd, + stride_d, batch_count, arg.compute_type, algo, @@ -794,10 +794,10 @@ void testing_gemm_strided_batched_ex(const Arguments& arg) arg.c_type, ldc, stride_c, - dC, - arg.c_type, - ldc, - stride_c, + dD, + arg.d_type, + ldd, + stride_d, batch_count, arg.compute_type, algo,