"...targets/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "728bea3489c97c9e1ddda0a0ae527ffd2d70cb97"
Commit de7bab05 authored by Paul's avatar Paul
Browse files

Use the correct grid_size

parent ed22ba4f
...@@ -106,7 +106,7 @@ struct instance ...@@ -106,7 +106,7 @@ struct instance
std::size_t get_grid_size(const std::array<std::size_t, 3>& config) const std::size_t get_grid_size(const std::array<std::size_t, 3>& config) const
{ {
return int_div_ceil(config[0], get_pb(1)) * int_div_ceil(config[1], get_pb(1)); return int_div_ceil(config[0], get_pb(0)) * int_div_ceil(config[1], get_pb(1));
} }
void set_ds_layout(const std::string& s) void set_ds_layout(const std::string& s)
......
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