"examples/vscode:/vscode.git/clone" did not exist on "2e84b445125aa2365eb5e79c94287d869db3366d"
Commit b92d27b0 authored by umangyadav's avatar umangyadav
Browse files

use sharding

parent a416dbc6
...@@ -75,7 +75,7 @@ void migraphx_from_value(const value& v, literal& l) ...@@ -75,7 +75,7 @@ void migraphx_from_value(const value& v, literal& l)
else else
{ {
assert(v.is_array()); assert(v.is_array());
size_t array_size = 1 + ((binary_size - 1) / partition_length); size_t array_size = 1 + ((binary_size - 1) / partition_length);
assert(array_size == v.size()); assert(array_size == v.size());
std::vector<uint8_t> binary_array(binary_size); std::vector<uint8_t> binary_array(binary_size);
size_t read_size = 0; size_t read_size = 0;
......
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