| 263 | } |
| 264 | |
| 265 | constexpr __MATX_INLINE__ __MATX_HOST__ __MATX_DEVICE__ auto Size(int dim) const noexcept |
| 266 | { |
| 267 | index_t size1 = detail::get_expanded_size<Rank()>(in1_, dim); |
| 268 | index_t size2 = detail::get_expanded_size<Rank()>(in2_, dim); |
| 269 | return detail::matx_max(size1,size2); |
| 270 | } |
| 271 | |
| 272 | template <typename ShapeType, typename Executor> |
| 273 | __MATX_INLINE__ void PreRun(ShapeType &&shape, Executor &&ex) const noexcept |
no test coverage detected