Commit b3935928 authored by Paul's avatar Paul
Browse files

Formatting

parent 506a73ec
...@@ -77,11 +77,11 @@ struct hip_shape ...@@ -77,11 +77,11 @@ struct hip_shape
MIGRAPHX_DEVICE_CONSTEXPR hip_index carry(hip_index result) const MIGRAPHX_DEVICE_CONSTEXPR hip_index carry(hip_index result) const
{ {
std::ptrdiff_t rem = 0; std::ptrdiff_t rem = 0;
for(std::ptrdiff_t i = result.size()-1; i >= 0; i--) for(std::ptrdiff_t i = result.size() - 1; i >= 0; i--)
{ {
auto z = result[i] + rem; auto z = result[i] + rem;
rem = z - std::ptrdiff_t(lens[i]) + 1; rem = z - std::ptrdiff_t(lens[i]) + 1;
if (rem > 0) if(rem > 0)
z -= rem; z -= rem;
else else
rem = 0; rem = 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