| 480 | } |
| 481 | |
| 482 | inline ndarray_len_t comp_size(const std::vector <ndarray_len_t> &shape) { |
| 483 | ndarray_len_t size = 1; |
| 484 | for (ndarray_len_t i : shape) |
| 485 | size *= i; |
| 486 | |
| 487 | return size; |
| 488 | } |
| 489 | |
| 490 | template<typename Scalar> |
| 491 | inline void |
no outgoing calls
no test coverage detected