Home
last modified time | relevance | path

Searched refs:output_channel (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/lite/kernels/internal/reference/integer_ops/
Ddepthwise_conv.h66 const int output_channel = m + in_channel * depth_multiplier; in DepthwiseConvPerChannel() local
83 filter_shape, 0, filter_y, filter_x, output_channel)]; in DepthwiseConvPerChannel()
105 acc += bias_data[output_channel]; in DepthwiseConvPerChannel()
108 acc, output_multiplier[output_channel], in DepthwiseConvPerChannel()
109 output_shift[output_channel]); in DepthwiseConvPerChannel()
114 output_channel)] = static_cast<int8_t>(acc); in DepthwiseConvPerChannel()
163 const int output_channel = m + in_channel * depth_multiplier; in DepthwiseConvPerChannel() local
180 filter_shape, 0, filter_y, filter_x, output_channel)]; in DepthwiseConvPerChannel()
191 acc += bias_data[output_channel]; in DepthwiseConvPerChannel()
194 acc, output_multiplier[output_channel], in DepthwiseConvPerChannel()
[all …]
/external/tensorflow/tensorflow/lite/micro/kernels/vexriscv/
Ddepthwise_conv.cc106 const int output_channel = m + in_channel * depth_multiplier; in DepthwiseConvPerChannel() local
111 filter_shape, 0, filter_y, filter_x, output_channel)]; in DepthwiseConvPerChannel()
136 const int output_channel = m + in_channel * depth_multiplier; in DepthwiseConvPerChannel() local
140 value += bias_data[output_channel]; in DepthwiseConvPerChannel()
144 value, output_multiplier[output_channel], in DepthwiseConvPerChannel()
145 output_shift[output_channel]); in DepthwiseConvPerChannel()
151 output_channel)] = static_cast<int8_t>(value); in DepthwiseConvPerChannel()
229 const int output_channel = m + in_channel * depth_multiplier; in DepthwiseConv() local
234 filter_shape, 0, filter_y, filter_x, output_channel)]; in DepthwiseConv()
244 const int output_channel = m + in_channel * depth_multiplier; in DepthwiseConv() local
[all …]
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Ddepthwiseconv_uint8.h221 const int output_channel = m + in_channel * depth_multiplier; in RunPerChannel() local
239 filter_shape, 0, filter_y, filter_x, output_channel)]; in RunPerChannel()
260 acc += bias_data[output_channel]; in RunPerChannel()
263 acc, output_multiplier[output_channel], in RunPerChannel()
264 output_shift[output_channel]); in RunPerChannel()
269 output_channel)] = static_cast<int8_t>(acc); in RunPerChannel()
/external/tensorflow/tensorflow/lite/kernels/internal/
Dconv_per_channel_quantized_16x8_test.cc68 for (int output_channel = 0; output_channel < output_depth; in PickOutputMultiplier() local
69 ++output_channel) { in PickOutputMultiplier()
87 filter_data[Offset(filter_shape, output_channel, filter_y, in PickOutputMultiplier()
96 acc += bias_data[output_channel]; in PickOutputMultiplier()
Ddepthwiseconv_per_channel_quantized_16x8_test.cc70 const int output_channel = m + in_channel * depth_multiplier; in PickOutputMultiplier() local
87 filter_shape, 0, filter_y, filter_x, output_channel)]; in PickOutputMultiplier()
94 acc += bias_data[output_channel]; in PickOutputMultiplier()
Ddepthwiseconv_per_channel_quantized_test.cc72 const int output_channel = m + in_channel * depth_multiplier; in PickOutputMultiplier() local
89 filter_shape, 0, filter_y, filter_x, output_channel)]; in PickOutputMultiplier()
95 acc += bias_data[output_channel]; in PickOutputMultiplier()
/external/tensorflow/tensorflow/lite/micro/kernels/xtensa/
Ddepthwise_conv.cc112 const int output_channel = m + in_channel * depth_multiplier; in DepthwiseConvPerChannel() local
138 (output_channel); in DepthwiseConvPerChannel()
166 ae_q56s bias_56 = AE_CVTQ48A32S(bias_data[output_channel]); in DepthwiseConvPerChannel()
178 acc_24x2, output_multiplier[output_channel], in DepthwiseConvPerChannel()
179 output_shift[output_channel]); in DepthwiseConvPerChannel()
189 output_channel; in DepthwiseConvPerChannel()
/external/tensorflow/tensorflow/core/kernels/mkl/
Dmkl_fused_ops_test.cc1143 const int output_channel = 5; in TYPED_TEST_P() local
1145 this->VerifyFusedMatMul(batch, input_channel, output_channel, {"BiasAdd"}); in TYPED_TEST_P()
1151 const int output_channel = 5; in TYPED_TEST_P() local
1153 this->VerifyFusedMatMul(batch, input_channel, output_channel, in TYPED_TEST_P()
1160 const int output_channel = 5; in TYPED_TEST_P() local
1162 this->VerifyFusedMatMul(batch, input_channel, output_channel, in TYPED_TEST_P()
1169 const int output_channel = 5; in TYPED_TEST_P() local
1171 this->VerifyFusedMatMul(batch, input_channel, output_channel, in TYPED_TEST_P()
1178 const int output_channel = 5; in TYPED_TEST_P() local
1180 this->VerifyFusedMatMul(batch, input_channel, output_channel, in TYPED_TEST_P()
[all …]
/external/webrtc/modules/audio_processing/test/
Ddebug_dump_test.cc282 msg->output_channel(0).size()); in VerifyDebugDump()
285 memcmp(output->channels()[i], msg->output_channel(i).data(), in VerifyDebugDump()
286 msg->output_channel(i).size())); in VerifyDebugDump()
Daec_dump_based_simulator.cc50 msg.output_channel(0).size() != out_config.num_frames()) { in VerifyFloatBitExactness()
55 if (msg.output_channel(ch).data()[sample] != in VerifyFloatBitExactness()
/external/webrtc/modules/audio_processing/
Ddebug.proto44 repeated bytes output_channel = 8; field
/external/webrtc/rtc_tools/unpack_aecdump/
Dunpack.cc357 reinterpret_cast<const float*>(msg.output_channel(i).data()); in do_main()
/external/tensorflow/tensorflow/lite/g3doc/performance/
Dquantization_spec.md55 Often, the `quantized_dimension` is the `output_channel` of the weights of
/external/tensorflow/tensorflow/lite/micro/kernels/vexriscv/doc/
DDepthwiseConv2D_int8.md173 create an int32 buffer of size output_channel as accumulators