Get the descriptor of this tensor * * @return The descriptor describing the characteristics of this tensor */
| 668 | * @return The descriptor describing the characteristics of this tensor |
| 669 | */ |
| 670 | TensorDescriptor get_descriptor() |
| 671 | { |
| 672 | AclTensorDescriptor desc; |
| 673 | const auto st = detail::as_enum<StatusCode>(AclGetTensorDescriptor(_object.get(), &desc)); |
| 674 | report_status(st, "[Compute Library] Failed to get the descriptor of the tensor"); |
| 675 | return TensorDescriptor(desc); |
| 676 | } |
| 677 | }; |
| 678 | |
| 679 | /** Tensor pack class |
nothing calls this directly
no test coverage detected