| 480 | */ |
| 481 | template <typename... Ts> |
| 482 | inline arm_compute::Status error_on_mismatching_shapes(const char *function, |
| 483 | const char *file, |
| 484 | const int line, |
| 485 | const ITensorInfo *tensor_info_1, |
| 486 | const ITensorInfo *tensor_info_2, |
| 487 | Ts... tensor_infos) |
| 488 | { |
| 489 | return error_on_mismatching_shapes(function, file, line, 0U, tensor_info_1, tensor_info_2, |
| 490 | std::forward<Ts>(tensor_infos)...); |
| 491 | } |
| 492 | /** Return an error if the passed two tensors have different shapes from the given dimension |
| 493 | * |
| 494 | * @param[in] function Function in which the error occurred. |
nothing calls this directly
no test coverage detected