matrix_op.cc
4.74 KB
-
[Compilation Warning Fix] in matrix_op.cc (#356) · 3f6423aa
The below compilation warning issue has been fixed. src/top/tensor/matrix_op.cc:37:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 0; i < lshape.ndim() - 1; i++) oshape[i] = lshape[i]; ^ src/top/tensor/matrix_op.cc:38:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (int i = 1; i < rshape.ndim(); i++) oshape[i + lshape.ndim() - 1] = rshap
Siju Samuel committed