File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
docs_input/api/manipulation/rearranging Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Reshape an operator by giving it new sizes. The total size of the reshaped opera
77the original size.
88
99.. doxygenfunction :: reshape(const T &op, ShapeType &&s)
10- .. doxygenfunction :: reshape( const T &op, const int32_t (&sizes)[RANK])
10+ .. doxygenfunction :: reshape( const T &op, const index_t (&sizes)[RANK])
1111
1212Examples
1313~~~~~~~~
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ namespace matx
194194 */
195195 template <int RANK, typename T>
196196 __MATX_INLINE__ auto reshape ( const T &op,
197- const int32_t (&sizes)[RANK]) {
197+ const index_t (&sizes)[RANK]) {
198198 return reshape<RANK, T>(op, detail::to_array (sizes));
199199 }
200200} // end namespace matx
You can’t perform that action at this time.
0 commit comments