From 75aa1b3d73d0a3d76704baac6ec95de9d2b35b6d Mon Sep 17 00:00:00 2001 From: Alex Li Date: Sun, 12 Aug 2018 20:40:46 -0700 Subject: [PATCH] remove change in matrix_op.cc --- src/operator/tensor/matrix_op.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/operator/tensor/matrix_op.cc b/src/operator/tensor/matrix_op.cc index 3b1a49f4feee..ffdc228b2d64 100644 --- a/src/operator/tensor/matrix_op.cc +++ b/src/operator/tensor/matrix_op.cc @@ -830,8 +830,8 @@ will be the last dimension. Examples:: - x = mx.nd.array([1, 2]) - y = mx.nd.array([3, 4]) + x = [1, 2] + y = [3, 4] stack(x, y) = [[1, 2], [3, 4]]