Home
last modified time | relevance | path

Searched defs:bytes_per_iteration (Results 1 – 25 of 53) sorted by relevance

123

/aosp_15_r20/external/XNNPACK/bench/
H A Dconvert.cc89 const size_t bytes_per_iteration = batch_size * (sizeof(uint16_t) + sizeof(float)); in xnnpack_convert_f16_f32() local
153 const size_t bytes_per_iteration = batch_size * (sizeof(float) + sizeof(uint16_t)); in xnnpack_convert_f32_f16() local
219 const size_t bytes_per_iteration = batch_size * (sizeof(float) + sizeof(int8_t)); in xnnpack_convert_f32_qs8() local
285 const size_t bytes_per_iteration = batch_size * (sizeof(float) + sizeof(uint8_t)); in xnnpack_convert_f32_qu8() local
352 const size_t bytes_per_iteration = batch_size * (sizeof(int8_t) + sizeof(float)); in xnnpack_convert_qs8_f32() local
419 const size_t bytes_per_iteration = batch_size * (sizeof(uint8_t) + sizeof(float)); in xnnpack_convert_qu8_f32() local
514 const size_t bytes_per_iteration = batch_size * (sizeof(uint16_t) + sizeof(float)); in tflite_convert_f16_f32() local
615 const size_t bytes_per_iteration = batch_size * (sizeof(float) + sizeof(int8_t)); in tflite_convert_f32_qs8() local
716 const size_t bytes_per_iteration = batch_size * (sizeof(float) + sizeof(uint8_t)); in tflite_convert_f32_qu8() local
819 const size_t bytes_per_iteration = batch_size * (sizeof(int8_t) + sizeof(float)); in tflite_convert_qs8_f32() local
[all …]
H A Dsigmoid.cc93 const size_t bytes_per_iteration = 2 * batch_size * sizeof(uint16_t); in xnnpack_sigmoid_f16() local
157 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_sigmoid_f32() local
226 const size_t bytes_per_iteration = 2 * batch_size * sizeof(int8_t); in xnnpack_sigmoid_qs8() local
295 const size_t bytes_per_iteration = 2 * batch_size * sizeof(uint8_t); in xnnpack_sigmoid_qu8() local
391 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_sigmoid_f32() local
497 const size_t bytes_per_iteration = 2 * batch_size * sizeof(int8_t); in tflite_sigmoid_qs8() local
603 const size_t bytes_per_iteration = 2 * batch_size * sizeof(uint8_t); in tflite_sigmoid_qu8() local
H A Delu.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_elu_f32() local
156 const size_t bytes_per_iteration = 2 * batch_size * sizeof(int8_t); in xnnpack_elu_qs8() local
252 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_elu_f32() local
358 const size_t bytes_per_iteration = 2 * batch_size * sizeof(int8_t); in tflite_elu_qs8() local
H A Df32-softmax.cc176 const size_t bytes_per_iteration = 2 * elements * sizeof(float); in DNNLSoftArgMax() local
239 const size_t bytes_per_iteration = 2 * elements * sizeof(float); in ThreePassSoftMaxWithRecomputing() local
309 const size_t bytes_per_iteration = 2 * elements * sizeof(float); in ThreePassSoftMaxWithReloading() local
368 const size_t bytes_per_iteration = 2 * elements * sizeof(float); in TwoPassSoftMax() local
H A Dhardswish.cc88 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_hardswish_f32() local
153 const size_t bytes_per_iteration = 2 * batch_size * sizeof(uint16_t); in xnnpack_hardswish_f16() local
249 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_hardswish_f32() local
H A Dsoftmax.cc90 const size_t bytes_per_iteration = 2 * elements_per_iteration * sizeof(uint8_t); in xnnpack_softmax_qu8() local
157 const size_t bytes_per_iteration = 2 * elements_per_iteration * sizeof(float); in xnnpack_softmax_f32() local
273 const size_t bytes_per_iteration = 2 * elements_per_iteration * sizeof(float); in tflite_softmax_f32() local
H A Dsquare-root.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_square_root_f32() local
181 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_square_root_f32() local
H A Dceiling.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_ceiling_f32() local
181 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_ceiling_f32() local
H A Dfloor.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_floor_f32() local
181 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_floor_f32() local
H A Dabs.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_abs_f32() local
181 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_abs_f32() local
H A Dsquare.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_square_f32() local
181 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_square_f32() local
H A Dbankers-rounding.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_bankers_rounding_f32() local
181 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_bankers_rounding_f32() local
H A Dnegate.cc86 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_negate_f32() local
181 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_negate_f32() local
H A Dleaky-relu.cc87 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_leaky_relu_f32() local
186 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in tflite_leaky_relu_f32() local
H A Dchannel-shuffle.cc85 const size_t bytes_per_iteration = 2 * elements_per_iteration * sizeof(uint8_t); in channel_shuffle_x8() local
153 const size_t bytes_per_iteration = 2 * elements_per_iteration * sizeof(float); in channel_shuffle_x32() local
H A Dprelu.cc94 const size_t bytes_per_iteration = (2 * elements_per_iteration + channels) * sizeof(float); in xnnpack_prelu_f32() local
222 const size_t bytes_per_iteration = (2 * elements_per_iteration + channels) * sizeof(float); in tflite_prelu_f32() local
H A Dtruncation.cc77 const size_t bytes_per_iteration = 2 * batch_size * sizeof(float); in xnnpack_truncation_f32() local
H A Df32-vrelu.cc54 const size_t bytes_per_iteration = 2 * num_elements * sizeof(float); in f32_vrelu() local
H A Df32-rmax.cc54 const size_t bytes_per_iteration = elements * sizeof(float); in f32_rmax() local
H A Du64-u32-vsqrtshift.cc56 const size_t bytes_per_iteration = num_elements * (sizeof(uint64_t) + sizeof(uint32_t)); in u64_u32_vsqrtshift() local
H A Dx8-lut.cc58 const size_t bytes_per_iteration = 2 * num_elements * sizeof(uint8_t); in x8_lut() local
H A Dqu8-f32-vcvt.cc64 const size_t bytes_per_iteration = num_elements * (sizeof(uint8_t) + sizeof(float)); in qu8_f32_vcvt() local
H A Df32-vhswish.cc58 const size_t bytes_per_iteration = 2 * num_elements * sizeof(float); in f32_vhswish() local
H A Dqu8-vlrelu.cc62 const size_t bytes_per_iteration = num_elements * (sizeof(uint8_t) + sizeof(uint8_t)); in qu8_vlrelu() local
H A Df32-velu.cc59 const size_t bytes_per_iteration = 2 * num_elements * sizeof(float); in f32_velu() local

123