Home
last modified time | relevance | path

Searched refs:scale_max (Results 1 – 16 of 16) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/hexagon/builders/
Dconv_2d_helpers.cc57 float scale_max = 0.0; in ProcessPerChannelQuantizedWeights() local
60 if (per_channel_quant->scales_data[i] > scale_max) { in ProcessPerChannelQuantizedWeights()
61 scale_max = per_channel_quant->scales_data[i]; in ProcessPerChannelQuantizedWeights()
64 if (scale_max == 0.0) { in ProcessPerChannelQuantizedWeights()
71 std::max(normalized_scales[i] / scale_max, kHexagonMinRelativeScale); in ProcessPerChannelQuantizedWeights()
79 *weights_min = -128 * scale_max; in ProcessPerChannelQuantizedWeights()
80 *weights_max = 127 * scale_max; in ProcessPerChannelQuantizedWeights()
/external/skqp/src/compute/hs/cl/
Dhs_cl_target.h42 uint8_t scale_max; member
46 uint8_t scale_max; member
Dhs_cl.c324 uint32_t const scale_log2 = MIN_MACRO(hs->config.merge.hm.scale_max,log2_rem); in hs_hm()
483 uint32_t const scale_log2 = MIN_MACRO(hs->config.merge.fm.scale_max,up_scale_log2); in hs_fm()
1053 scale <= target->config.merge.fm.scale_max; in hs_cl_create()
1063 scale <= target->config.merge.hm.scale_max; in hs_cl_create()
/external/skqp/src/compute/hs/vk/
Dhs_vk_target.h44 uint8_t scale_max; member
48 uint8_t scale_max; member
Dhs_vk.c302 uint32_t const scale_log2 = MIN_MACRO(hs->config.merge.hm.scale_max,log2_rem); in hs_hm()
339 uint32_t const scale_log2 = MIN_MACRO(hs->config.merge.fm.scale_max,up_scale_log2); in hs_fm()
842 scale <= target->config.merge.fm.scale_max; in hs_vk_create()
852 scale <= target->config.merge.hm.scale_max; in hs_vk_create()
/external/skqp/src/compute/hs/cl/intel/gen8/u64/
Dhs_intel_gen8_u64.c55 .scale_max = HS_FM_SCALE_MAX
59 .scale_max = HS_HM_SCALE_MAX,
/external/skqp/src/compute/hs/cl/intel/gen8/u32/
Dhs_intel_gen8_u32.c55 .scale_max = HS_FM_SCALE_MAX
59 .scale_max = HS_HM_SCALE_MAX,
/external/skqp/src/compute/hs/vk/amd/gcn/u64/
Dhs_amd_gcn_u64.c41 .scale_max = HS_FM_SCALE_MAX
45 .scale_max = HS_HM_SCALE_MAX,
/external/skqp/src/compute/hs/vk/amd/gcn/u32/
Dhs_amd_gcn_u32.c41 .scale_max = HS_FM_SCALE_MAX
45 .scale_max = HS_HM_SCALE_MAX,
/external/skqp/src/compute/hs/vk/intel/gen8/u64/
Dhs_intel_gen8_u64.c41 .scale_max = HS_FM_SCALE_MAX
45 .scale_max = HS_HM_SCALE_MAX,
/external/skqp/src/compute/hs/vk/intel/gen8/u32/
Dhs_intel_gen8_u32.c41 .scale_max = HS_FM_SCALE_MAX
45 .scale_max = HS_HM_SCALE_MAX,
/external/skqp/src/compute/hs/vk/nvidia/sm_35/u64/
Dhs_nvidia_sm35_u64.c41 .scale_max = HS_FM_SCALE_MAX
45 .scale_max = HS_HM_SCALE_MAX,
/external/skqp/src/compute/hs/vk/nvidia/sm_35/u32/
Dhs_nvidia_sm35_u32.c41 .scale_max = HS_FM_SCALE_MAX
45 .scale_max = HS_HM_SCALE_MAX,
/external/mesa3d/src/imgui/
Dimgui.h506 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec…
507 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec…
508 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec…
509 … = 0, const char* overlay_text = NULL, float scale_min = FLT_MAX, float scale_max = FLT_MAX, ImVec…
Dimgui_widgets.cpp5249 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_si… in PlotEx() argument
5274 if (scale_min == FLT_MAX || scale_max == FLT_MAX) in PlotEx()
5286 if (scale_max == FLT_MAX) in PlotEx()
5287 scale_max = v_max; in PlotEx()
5315 const float inv_scale = (scale_min == scale_max) ? 0.0f : (1.0f / (scale_max - scale_min)); in PlotEx()
5320 …float histogram_zero_line_t = (scale_min * scale_max < 0.0f) ? (-scale_min * inv_scale) : (scale_m… in PlotEx()
5375 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_si… in PlotLines() argument
5378 …Getter, (void*)&data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); in PlotLines()
5381 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_si… in PlotLines() argument
5383 … values_getter, data, values_count, values_offset, overlay_text, scale_min, scale_max, graph_size); in PlotLines()
[all …]
Dimgui_internal.h1497 …nt, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 frame_si…