Home
last modified time | relevance | path

Searched refs:xnn_allocate_zero_memory (Results 1 – 7 of 7) sorted by relevance

/external/XNNPACK/src/
Dmemory-planner.c128 tracker->usage = xnn_allocate_zero_memory(sizeof(struct xnn_value_usage) * subgraph->num_values); in xnn_init_value_allocation_tracker()
159 …struct xnn_value_usage** sorted_usage = xnn_allocate_zero_memory(sizeof(struct xnn_value_usage*) *… in xnn_plan_value_allocation_tracker()
170 struct memory_block* current_live_mem_blocks = xnn_allocate_zero_memory( in xnn_plan_value_allocation_tracker()
Druntime.c49 workspace = xnn_allocate_zero_memory(sizeof(struct xnn_workspace)); in xnn_create_workspace()
84 weights_cache = xnn_allocate_zero_memory(sizeof(struct xnn_weights_cache)); in xnn_create_weights_cache_with_size()
253 runtime = xnn_allocate_zero_memory(sizeof(struct xnn_runtime)); in xnn_create_runtime_v4()
259 …runtime->opdata = xnn_allocate_zero_memory(sizeof(struct xnn_operator_data) * subgraph->num_nodes); in xnn_create_runtime_v4()
312 runtime->blobs = xnn_allocate_zero_memory(sizeof(struct xnn_blob) * subgraph->num_values); in xnn_create_runtime_v4()
Dcache.c115 …cache->buckets = (struct xnn_cache_bucket*) xnn_allocate_zero_memory(num_buckets * sizeof(struct x… in xnn_init_cache_with_size()
Dsubgraph.c40 subgraph = xnn_allocate_zero_memory(sizeof(struct xnn_subgraph)); in xnn_create_subgraph()
48 subgraph->values = xnn_allocate_zero_memory(external_value_ids * sizeof(struct xnn_value)); in xnn_create_subgraph()
/external/XNNPACK/src/operators/
Dpost-operation.c34 char* post_operation_params = xnn_allocate_zero_memory(total_size); in allocate_and_initialize_post_operation_params()
Ddeconvolution-nhwc.c170 deconvolution_op->subconvolution_buffer = xnn_allocate_zero_memory(subconvolution_buffer_size); in create_deconvolution2d_nhwc()
/external/XNNPACK/src/xnnpack/
Dallocator.h41 inline static void* xnn_allocate_zero_memory(size_t memory_size) { in xnn_allocate_zero_memory() function