Home
last modified time | relevance | path

Searched refs:packed_group_weights_size (Results 1 – 2 of 2) sorted by relevance

/external/XNNPACK/src/operators/
Ddeconvolution-nhwc.c177 …size_t packed_group_weights_size = (sizeof(float) * kernel_size * k_stride + sizeof(float)) * n_st… in create_deconvolution2d_nhwc() local
181 packed_group_weights_size = n_stride * in create_deconvolution2d_nhwc()
206 deconvolution_op->packed_weights = xnn_allocate_simd_memory(packed_group_weights_size * groups); in create_deconvolution2d_nhwc()
210 packed_group_weights_size * groups, xnn_operator_type_to_string(operator_type)); in create_deconvolution2d_nhwc()
213 …memset(deconvolution_op->packed_weights, packed_weights_padding_byte, packed_group_weights_size * … in create_deconvolution2d_nhwc()
Dconvolution-nhwc.c311 …const size_t packed_group_weights_size = ((kernel_size * k_stride << log2_filter_element_size) + b… in create_convolution2d_nhwc() local
312 convolution_op->packed_weights = xnn_allocate_simd_memory(packed_group_weights_size * groups); in create_convolution2d_nhwc()
316 packed_group_weights_size * groups, xnn_operator_type_to_string(operator_type)); in create_convolution2d_nhwc()
319 …memset(convolution_op->packed_weights, packed_weights_padding_byte, packed_group_weights_size * gr… in create_convolution2d_nhwc()