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

Function AclDestroyTensorPack

src/c/AclTensorPack.cpp:96–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96extern "C" AclStatus AclDestroyTensorPack(AclTensorPack external_pack)
97{
98 using namespace arm_compute;
99
100 auto pack = get_internal(external_pack);
101 StatusCode status = detail::validate_internal_pack(pack);
102 ARM_COMPUTE_RETURN_CENUM_ON_FAILURE(status);
103
104 delete pack;
105
106 return AclSuccess;
107}

Callers 1

setupMethod · 0.85

Calls 2

validate_internal_packFunction · 0.85
get_internalFunction · 0.50

Tested by

no test coverage detected