Commit 34f62dea authored by Rostyslav Geyyer's avatar Rostyslav Geyyer
Browse files

Format

parent 27b6494c
...@@ -137,25 +137,25 @@ int main(int argc, char* argv[]) ...@@ -137,25 +137,25 @@ int main(int argc, char* argv[])
auto& op_ptr = op_ptrs[0]; auto& op_ptr = op_ptrs[0];
std::cout << "Run the generic instance without timing: " << op_ptr->GetTypeString() std::cout << "Run the generic instance without timing: " << op_ptr->GetTypeString()
<< std::endl; << std::endl;
// run the generic instance // run the generic instance
auto argument_ptr = op_ptr->MakeArgumentPointer( auto argument_ptr =
a_device_buf.GetDeviceBuffer(), op_ptr->MakeArgumentPointer(a_device_buf.GetDeviceBuffer(),
b_device_buf.GetDeviceBuffer(), b_device_buf.GetDeviceBuffer(),
std::array<const void*, 2>{d0_m_n_device_buf.GetDeviceBuffer(), std::array<const void*, 2>{d0_m_n_device_buf.GetDeviceBuffer(),
d1_m_n_device_buf.GetDeviceBuffer()}, d1_m_n_device_buf.GetDeviceBuffer()},
e_device_buf.GetDeviceBuffer(), e_device_buf.GetDeviceBuffer(),
M, M,
N, N,
K, K,
StrideA, StrideA,
StrideB, StrideB,
std::array<ck::index_t, 2>{StrideD0, StrideD1}, std::array<ck::index_t, 2>{StrideD0, StrideD1},
StrideE, StrideE,
a_element_op, a_element_op,
b_element_op, b_element_op,
cde_element_op); cde_element_op);
auto invoker_ptr = op_ptr->MakeInvokerPointer(); auto invoker_ptr = op_ptr->MakeInvokerPointer();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment