Commit b6fe118e authored by rocking's avatar rocking
Browse files

Fix typo

parent d92fb7e8
...@@ -373,8 +373,8 @@ int main(int argc, char* argv[]) ...@@ -373,8 +373,8 @@ int main(int argc, char* argv[])
// do reduce max // do reduce max
auto reduce_max = DeviceReduceMaxInstance{}; auto reduce_max = DeviceReduceMaxInstance{};
auto reduce_max_workaspace_size = reduce_max.GetWorkspaceSizeInBytes(c_m_n_shape, reduceDims); auto reduce_max_workspace_size = reduce_max.GetWorkspaceSizeInBytes(c_m_n_shape, reduceDims);
DeviceMem reduce_max_workaspace_device_buf(reduce_max_workaspace_size); DeviceMem reduce_max_workaspace_device_buf(reduce_max_workspace_size);
auto reduce_max_argument_ptr = reduce_max.MakeArgumentPointer( auto reduce_max_argument_ptr = reduce_max.MakeArgumentPointer(
c_m_n_shape, c_m_n_shape,
......
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