Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
azai91 committed Jun 18, 2018
1 parent b009a74 commit b32c6e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/operator/tensor/elemwise_binary_op_basic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ static void _backward_ElemwiseAddEx(const nnvm::NodeAttrs& attrs,
MKLDNNCopy(attrs, ctx, inputs[0], req[1], outputs[1]);
return;
} else if (common::ContainsOnlyStorage(inputs, kDefaultStorage)) {
FallBackCompute(ElemwiseBinaryOp::BackwardUseNone<cpu, mshadow_op::identity, mshadow_op::identity>, attrs, ctx, inputs, req, outputs);
FallBackCompute(ElemwiseBinaryOp::BackwardUseNone<cpu, mshadow_op::identity, mshadow_op::identity>,
attrs, ctx, inputs, req, outputs);
return;
}
#endif
Expand Down

0 comments on commit b32c6e1

Please sign in to comment.