Searched refs:type_min (Results 1 – 9 of 9) sorted by relevance
/external/ComputeLibrary/src/cpu/operators/ |
D | CpuFullyConnected.cpp | 54 PixelValue type_min{}; in get_quantized_asymmetric_output_min_max() local 56 std::tie(type_min, type_max) = get_min_max(data_type); in get_quantized_asymmetric_output_min_max() 64 type_min = PixelValue(q_unif.offset); in get_quantized_asymmetric_output_min_max() 67 type_min = PixelValue(q_unif.offset); in get_quantized_asymmetric_output_min_max() 71 type_min = PixelValue(act_info.b(), data_type, q_info); in get_quantized_asymmetric_output_min_max() 80 return std::make_pair(type_min, type_max); in get_quantized_asymmetric_output_min_max() 98 PixelValue type_min{}; in get_gemmlowp_output_stage_info() local 100 std::tie(type_min, type_max) = get_quantized_asymmetric_output_min_max(oq_info, act, data_type); in get_gemmlowp_output_stage_info() 106 gemmlowp_output_stage_info.gemmlowp_min_bound = type_min.get<int32_t>(); in get_gemmlowp_output_stage_info()
|
D | CpuGemmDirectConv2d.cpp | 60 PixelValue type_min{}; in calculate_output_stage_metadata() local 62 std::tie(type_min, type_max) = get_min_max(data_type); in calculate_output_stage_metadata() 63 int32_t min_activation = type_min.get<int32_t>(); in calculate_output_stage_metadata()
|
D | CpuGemmConv2d.cpp | 139 PixelValue type_min{}; in configure_mm() local 141 std::tie(type_min, type_max) = get_min_max(data_type); in configure_mm() 142 int32_t min_activation = type_min.get<int32_t>(); in configure_mm() 203 PixelValue type_min{}; in validate_mm() local 205 std::tie(type_min, type_max) = get_min_max(data_type); in validate_mm() 206 int32_t min_activation = type_min.get<int32_t>(); in validate_mm()
|
/external/libbpf/include/linux/ |
D | overflow.h | 9 #define type_min(T) ((T)((T)-type_max(T)-(T)1)) macro 73 typeof(a) __tmin = type_min(typeof(a)); \
|
/external/ComputeLibrary/src/gpu/cl/operators/ |
D | ClFullyConnected.cpp | 80 PixelValue type_min{}; in construct_gemmlowp_output_stage() local 82 std::tie(type_min, type_max) = get_min_max(data_type); in construct_gemmlowp_output_stage() 86 …std::tie(type_min, type_max) = get_quantized_activation_min_max(activation_info, data_type, output… in construct_gemmlowp_output_stage() 95 type_min.get(gemmlowp_output_stage.gemmlowp_min_bound); in construct_gemmlowp_output_stage()
|
/external/ComputeLibrary/src/gpu/cl/kernels/ |
D | ClPool3dKernel.cpp | 166 PixelValue type_min{}; in configure() local 167 std::tie(type_min, std::ignore) = get_min_max(data_type); in configure() 168 … build_opts.add_option("-DINITIAL_VALUE=" + support::cpp11::to_string(type_min.get<int32_t>())); in configure()
|
D | ClPool2dKernel.cpp | 179 PixelValue type_min{}; in configure() local 180 std::tie(type_min, std::ignore) = get_min_max(data_type); in configure() 181 … build_opts.add_option("-DINITIAL_VALUE=" + support::cpp11::to_string(type_min.get<int32_t>())); in configure()
|
/external/virglrenderer/src/drm/linux/ |
D | overflow.h | 40 #define type_min(T) ((T)((T)-type_max(T)-(T)1)) macro
|
/external/ComputeLibrary/src/cpu/kernels/ |
D | CpuGemmLowpOffsetContributionOutputStageKernel.cpp | 912 PixelValue type_min{}; in run_op() local 914 std::tie(type_min, type_max) = get_min_max(dst->info()->data_type()); in run_op() 915 int32_t type_min_int = type_min.get<int32_t>(); in run_op()
|