Skip to content

Commit

Permalink
src: cpu: simple: fixup formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dzarukin committed Dec 7, 2019
1 parent d9452ba commit 553813a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cpu/simple_concat.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ status_t simple_concat_t<data_type>::execute(const exec_ctx_t &ctx) const {
dims_t phys_dims;
for (int i = 0; i < DNNL_MAX_NDIMS; i++) {
if (i < perm[concat_dim])
phys_dims[i] = o_d.padded_dims()[iperm[i]] / pd()->blocks_[iperm[i]];
phys_dims[i]
= o_d.padded_dims()[iperm[i]] / pd()->blocks_[iperm[i]];
else
phys_dims[i] = 1;
}
Expand Down

0 comments on commit 553813a

Please sign in to comment.