Created by: weili-ict
模型库中缺乏支持numpy中的repeat操作的算子
例如: x = np.array([[1,2], [3,4]]) y = np.repeat(x, [1, 2], axis=1) array([[1, 2, 2], [3, 4, 4]])