Searched refs:weights_scale (Results 1 – 10 of 10) sorted by relevance
/external/ComputeLibrary/tests/validation/reference/ |
D | Convolution3d.h | 116 float weights_scale = wq_info.scale; variable 127 weights_scale = weights.quantization_info().scale()[filter_id]; 134 const float multiplier = input_scale * weights_scale / output_scale;
|
D | FullyConnectedLayer.cpp | 78 const float weights_scale = wq_info.scale; in vector_matrix_multiply() local 84 const float multiplier = input_scale * weights_scale / output_scale; in vector_matrix_multiply()
|
D | DepthwiseConvolutionLayer.cpp | 197 …const float weights_scale = (is_quantized_per_channel) ? weights_scale_vec[out_z] : weights_sc… in depthwise_convolution_quantized() local 198 const float multiplier = input_scale * weights_scale / output_scale; in depthwise_convolution_quantized()
|
D | Conv3D.cpp | 137 float weights_scale = wq_info.scale; in calculate_conv3d() local 143 const float multiplier = input_scale * weights_scale / output_scale; in calculate_conv3d()
|
/external/ComputeLibrary/tests/validate_examples/ |
D | graph_fully_connected.cpp | 69 weights_scale(parser.add_option<SimpleOption<float>>("weights_scale", 1.0f)), in FullyConnectedOptions() 83 weights_scale->set_help("Quantization scale from QASYMM8"); in FullyConnectedOptions() 109 …common_params.weights.quant_info = QuantizationInfo(weights_scale->value(), weights_offset->value(… in consume_parameters() 145 SimpleOption<float> *weights_scale; /**< Weights Quantization scale from QASSYMM8 */ member in __anonb087dbd00111::FullyConnectedOptions
|
D | graph_depthwiseconvolution.cpp | 83 weights_scale(parser.add_option<SimpleOption<float>>("weights_scale", 1.0f)), in DepthConvolutionOptions() 143 weights_scale->set_help("Quantization scale from QASYMM8"); in DepthConvolutionOptions() 173 …common_params.weights.quant_info = QuantizationInfo(weights_scale->value(), weights_offset->value(… in consume_parameters() 241 …SimpleOption<float> *weights_scale; /**< Weights Quant… member in __anondcaacb1f0111::DepthConvolutionOptions
|
D | graph_convolution.cpp | 83 weights_scale(parser.add_option<SimpleOption<float>>("weights_scale", 1.0f)), in ConvolutionOptions() 138 weights_scale->set_help("Quantization scale from QASYMM8"); in ConvolutionOptions() 172 …common_params.weights.quant_info = QuantizationInfo(weights_scale->value(), weights_offset->value(… in consume_parameters() 240 …SimpleOption<float> *weights_scale; /**< Weights Quantization s… member in __anon99218fb20111::ConvolutionOptions
|
/external/libaom/aom_dsp/ |
D | intrapred.c | 74 #define sm_weights_sanity_checks(weights_w, weights_h, weights_scale, \ argument 76 assert(weights_w[0] < weights_scale); \ 77 assert(weights_h[0] < weights_scale); \ 78 assert(weights_scale - weights_w[bw - 1] < weights_scale); \ 79 assert(weights_scale - weights_h[bh - 1] < weights_scale); \
|
/external/ComputeLibrary/src/cpu/kernels/conv3d/neon/ |
D | quantized.h | 57 const float weights_scale = weights->info()->quantization_info().uniform().scale; in directconv3d_quantized_neon_ndhwc() local 63 const float multiplier = input_scale * weights_scale / output_scale; in directconv3d_quantized_neon_ndhwc()
|
/external/ComputeLibrary/src/cpu/kernels/depthwiseconv2d/generic/neon/ |
D | impl.cpp | 782 auto weights_scale = weights->info()->quantization_info().scale(); in run_depthwise_quanitized8bit() local 788 weights_scale.push_back(weights_scale.front()); in run_depthwise_quanitized8bit() 792 for(const auto &s : weights_scale) in run_depthwise_quanitized8bit()
|