Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakpiase authored Nov 9, 2021
1 parent 59fabc8 commit a7d59c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paddle/fluid/operators/mkldnn/stack_mkldnn_op.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class StackMKLDNNHandler
int ndims = inputs[0]->dims().size();

if (stack_axis < 0) {
stack_axis = ndims + 1 + stack_axis; // +1 to match output's ndims
stack_axis = ndims + 1 + stack_axis; // +1 to match output's ndims
}

// in stack op all inputs must have same dims
Expand Down

2 comments on commit a7d59c6

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

Please sign in to comment.