| 48 | namespace |
| 49 | { |
| 50 | TensorShape get_dst_shape(const ITensorInfo *src, const PermutationVector &perm) |
| 51 | { |
| 52 | TensorShape dst_shape = src->tensor_shape(); |
| 53 | permute(dst_shape, perm); |
| 54 | return dst_shape; |
| 55 | } |
| 56 | |
| 57 | Status validate_arguments(const ITensorInfo *src, const ITensorInfo *dst, const PermutationVector &perm) |
| 58 | { |