Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/dmlc/mshadow
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen committed Nov 1, 2015
2 parents 462822e + 5c72dfc commit 74be312
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mshadow/dot_engine-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,9 @@ struct DotEngine<SV, xpu, 2, 2, 2, transpose_left, transpose_right, DType> {
if (xpu::kDevMask == cpu::kDevMask && scale == 1.0f) {
if (!transpose_left && !transpose_right) {
dst = expr::implicit_dot(lhs, rhs); return;
} else if(!transpose_left && transpose_right) {
} else if (!transpose_left && transpose_right) {
dst = expr::implicit_dot(lhs, rhs.T()); return;
} else if(transpose_left && !transpose_right) {
} else if (transpose_left && !transpose_right) {
dst = expr::implicit_dot(lhs.T(), rhs); return;
}
}
Expand Down

0 comments on commit 74be312

Please sign in to comment.