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

Function AclDestroyQueue

src/c/AclQueue.cpp:87–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85}
86
87extern "C" AclStatus AclDestroyQueue(AclQueue external_queue)
88{
89 using namespace arm_compute;
90
91 auto queue = get_internal(external_queue);
92
93 StatusCode status = detail::validate_internal_queue(queue);
94 ARM_COMPUTE_RETURN_CENUM_ON_FAILURE(status);
95
96 delete queue;
97
98 return AclSuccess;
99}

Callers 1

setupMethod · 0.85

Calls 2

validate_internal_queueFunction · 0.85
get_internalFunction · 0.50

Tested by

no test coverage detected