/external/ComputeLibrary/tests/validation/reference/ |
D | DeconvolutionLayer.cpp | 47 const int weights_width = weights.shape().x(); in deconvolution_layer() local 49 …const int weights_upper_dims = weights.shape().total_size() / (weights_width * weights_he… in deconvolution_layer() 61 unsigned int deconv_pad_x = output_shape.x() - (out_x - weights_width + 1); in deconvolution_layer() 108 const int offset = ud * weights_width * weights_height; in deconvolution_layer() 111 for(int x = 0; x < weights_width; ++x) in deconvolution_layer() 113 …d[offset + (weights_height - 1 - y) * weights_width + (weights_width - 1 - x)] = weights[offset + … in deconvolution_layer()
|
D | Conv3D.cpp | 67 const unsigned int weights_width = weights.shape()[weights_width_dim]; in calculate_conv3d() local 83 for(unsigned int weight_x = 0; weight_x < weights_width; ++weight_x) in calculate_conv3d() 122 const unsigned int weights_width = weights.shape()[weights_width_dim]; in calculate_conv3d() local 153 for(unsigned int weight_x = 0; weight_x < weights_width; ++weight_x) in calculate_conv3d()
|
/external/ComputeLibrary/src/gpu/cl/kernels/ |
D | ClTransposedConvolutionKernel.cpp | 82 const size_t weights_width = weights->dimension(width_idx); in validate_arguments() local 85 …dims = deconvolution_output_dimensions(input_width, input_height, weights_width, weights_heigh… in validate_arguments() 113 const size_t weights_width = weights->dimension(width_idx); in configure() local 120 …dims = deconvolution_output_dimensions(input_width, input_height, weights_width, weights_heigh… in configure() 126 const uint32_t pad_left = weights_width - deconv_info.pad_left() - 1; in configure() 168 build_options.add_option("-DWEI_WIDTH=" + support::cpp11::to_string(weights_width)); in configure() 223 _config_id += support::cpp11::to_string(weights_width); in configure()
|
D | ClDirectConv3dKernel.cpp | 110 const size_t weights_width = src1->dimension(2); in configure() local 136 build_options.add_option("-DWEI_WIDTH=" + support::cpp11::to_string(weights_width)); in configure() 200 _config_id += support::cpp11::to_string(weights_width); in configure()
|
/external/ComputeLibrary/src/cpu/kernels/depthwiseconv2d/generic/neon/ |
D | impl.cpp | 53 const size_t weights_width; member 74 weights_width(weights.dimension(width_idx)), in DepthwiseConvolutionRunInfo() 186 for(uint32_t w = 0; w < run_info.weights_width; ++w) in depthwise_loop_multiplier1_fp() 220 for(size_t w = 0; w < run_info.weights_width; ++w) in depthwise_loop_multiplier1_fp() 291 for(size_t w = 0; w < run_info.weights_width; ++w) in depthwise_loop_generic_fp() 347 …const int32_t k_offset = run_info.weights_width * run_info.weights_height * input_qoffset *… in depthwise_loop_multiplier1_quantized() 393 for(size_t w = 0; w < run_info.weights_width; ++w) in depthwise_loop_multiplier1_quantized() 456 for(size_t w = 0; w < run_info.weights_width; ++w) in depthwise_loop_multiplier1_quantized() 518 …const int32_t k_offset = run_info.weights_width * run_info.weights_height * input_qoffset *… in depthwise_loop_generic_quantized() 560 for(size_t w = 0; w < run_info.weights_width; ++w) in depthwise_loop_generic_quantized() [all …]
|
/external/ComputeLibrary/tests/validate_examples/ |
D | graph_depthwiseconvolution.cpp | 69 weights_width(parser.add_option<SimpleOption<int>>("weights_width", 3)), in DepthConvolutionOptions() 125 weights_width->set_help("Set weights_dimensions width"); in DepthConvolutionOptions() 168 common_params.weights.width = weights_width->value(); in consume_parameters() 227 …SimpleOption<int> *weights_width; /**< weights width… member in __anon02adb8100111::DepthConvolutionOptions
|
D | graph_convolution.cpp | 69 weights_width(parser.add_option<SimpleOption<int>>("weights_width", 3)), in ConvolutionOptions() 126 weights_width->set_help("Set weights_dimensions width"); in ConvolutionOptions() 168 common_params.weights.width = weights_width->value(); in consume_parameters() 226 SimpleOption<int> *weights_width; /**< weights width */ member in __anona0b8e1830111::ConvolutionOptions
|
/external/mesa3d/src/etnaviv/common/scripts/ |
D | parse_huffman.py | 14 weights_width = 2 variable 15 weights_height = weights_width 317 kernel_size = weights_width * weights_height
|
/external/tensorflow/tensorflow/lite/delegates/hexagon/builders/ |
D | conv_2d_helpers.cc | 161 int weights_width = weight_shape_[1]; in CheckShouldSplitDwConv() local 167 weights_height == 5 && weights_width == 5 && in CheckShouldSplitDwConv()
|
D | conv_2d_builder.cc | 44 int weights_height, int weights_width, in ComputeSpaceToBatchParams() argument 56 dilation_factors_h_w[1] * (weights_width - 1) + 1; in ComputeSpaceToBatchParams()
|
/external/ComputeLibrary/arm_compute/core/utils/misc/ |
D | ShapeCalculator.h | 721 const unsigned int weights_width = weights_shape[idx_width]; in compute_deep_convolution_shape() local 726 …_width, output_height) = scaled_dimensions(input_width, input_height, weights_width, weights_heigh… in compute_deep_convolution_shape()
|