MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / get_descriptor

Method get_descriptor

arm_compute/Acl.hpp:670–676  ·  view source on GitHub ↗

Get the descriptor of this tensor * * @return The descriptor describing the characteristics of this tensor */

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 4

AclGetTensorDescriptorFunction · 0.85
report_statusFunction · 0.85
TensorDescriptorClass · 0.70
getMethod · 0.45

Tested by

no test coverage detected