* @brief Construct an array type from dtype and shape. * dimension is computed from shape. * @param scalar_type The data type of the array. * @param shape The shape of the array. */
| 36 | * @param shape The shape of the array. |
| 37 | */ |
| 38 | static type array(scalar_type dtype, icm::shape shape) |
| 39 | { |
| 40 | return type(dtype, std::move(shape)); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * @brief Construct an array type from dimensions. |
no test coverage detected