Home
last modified time | relevance | path

Searched refs:round_mode (Results 1 – 25 of 26) sorted by relevance

12

/external/vixl/src/
Dutils-vixl.cc336 FPRounding round_mode, in FPToFloat() argument
340 VIXL_ASSERT((round_mode == FPTieEven) || (round_mode == FPRoundOdd)); in FPToFloat()
341 USE(round_mode); in FPToFloat()
389 return FPRoundToFloat(sign, exponent, mantissa, round_mode); in FPToFloat()
448 FPRounding round_mode, in FPToFloat16() argument
452 VIXL_ASSERT(round_mode == FPTieEven); in FPToFloat16()
453 USE(round_mode); in FPToFloat16()
493 return FPRoundToFloat16(sign, exponent, mantissa, round_mode); in FPToFloat16()
503 FPRounding round_mode, in FPToFloat16() argument
507 VIXL_ASSERT(round_mode == FPTieEven); in FPToFloat16()
[all …]
Dutils-vixl.h1038 FPRounding round_mode) { in FPRound() argument
1042 VIXL_ASSERT((round_mode == FPTieEven) || (round_mode == FPRoundOdd)); in FPRound()
1116 if (round_mode == FPTieEven) { in FPRound()
1121 VIXL_ASSERT(round_mode == FPRoundOdd); in FPRound()
1150 if (round_mode == FPTieEven) { in FPRound()
1154 VIXL_ASSERT(round_mode == FPRoundOdd); in FPRound()
1175 if (round_mode == FPTieEven) { in FPRound()
1198 VIXL_ASSERT(round_mode == FPRoundOdd); in FPRound()
1225 FPRounding round_mode) { in FPRoundToDouble() argument
1230 round_mode); in FPRoundToDouble()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dquantize_and_dequantize_op.h48 QuantizerRoundMode round_mode, typename TTypes<T>::Vec out);
65 QuantizerRoundMode round_mode, in ClampScaleAndRound() argument
67 switch (round_mode) { in ClampScaleAndRound()
90 T inverse_scale, QuantizerRoundMode round_mode, in ScaleAndRound() argument
92 switch (round_mode) { in ScaleAndRound()
110 QuantizerRoundMode round_mode, in Compute()
161 round_mode, out); in Compute()
163 ScaleAndRound(d, input, scale, inverse_scale, round_mode, out); in Compute()
Dquantize_and_dequantize_op_gpu.cu.cc35 QuantizerRoundMode round_mode, typename TTypes<T>::Vec out) { in operator ()()
38 input_max_tensor, round_mode, out); in operator ()()
Dquantize_and_dequantize_op.cc219 Tensor* input_max_tensor, QuantizerRoundMode round_mode, in operator ()()
223 input_max_tensor, round_mode, out); in operator ()()
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_QuantizeAndDequantizeV2.pbtxt45 name: "round_mode"
47 The 'round_mode' attribute controls which rounding tie-breaking algorithm is
51 * HALF_TO_EVEN: this is the default round_mode.
109 The above round function rounds the value based on the given round_mode.
Dapi_def_QuantizeV2.pbtxt38 'round_mode' attribute controls which rounding tie-breaking algorithm is used
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.quantization.pbtxt33 …argspec: "args=[\'input\', \'min_range\', \'max_range\', \'T\', \'mode\', \'round_mode\', \'name\'…
37 …n\', \'input_max\', \'signed_input\', \'num_bits\', \'range_given\', \'round_mode\', \'name\'], va…
Dtensorflow.raw_ops.pbtxt2397 …n\', \'input_max\', \'signed_input\', \'num_bits\', \'range_given\', \'round_mode\', \'name\'], va…
2409 …argspec: "args=[\'input\', \'min_range\', \'max_range\', \'T\', \'mode\', \'round_mode\', \'name\'…
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.quantization.pbtxt33 …argspec: "args=[\'input\', \'min_range\', \'max_range\', \'T\', \'mode\', \'round_mode\', \'name\'…
37 …n\', \'input_max\', \'signed_input\', \'num_bits\', \'range_given\', \'round_mode\', \'name\'], va…
Dtensorflow.pbtxt1753 …argspec: "args=[\'input\', \'min_range\', \'max_range\', \'T\', \'mode\', \'round_mode\', \'name\'…
1757 …[\'input\', \'min_range\', \'max_range\', \'T\', \'mode\', \'name\', \'round_mode\'], varargs=None…
Dtensorflow.raw_ops.pbtxt2397 …n\', \'input_max\', \'signed_input\', \'num_bits\', \'range_given\', \'round_mode\', \'name\'], va…
2409 …argspec: "args=[\'input\', \'min_range\', \'max_range\', \'T\', \'mode\', \'round_mode\', \'name\'…
/external/v8/src/arm64/
Dsimulator-arm64.h44 FPRounding round_mode) { in FPRound() argument
55 DCHECK((round_mode == FPTieEven) || (round_mode == FPRoundOdd)); in FPRound()
129 if (round_mode == FPTieEven) { in FPRound()
134 DCHECK_EQ(round_mode, FPRoundOdd); in FPRound()
163 if (round_mode == FPTieEven) { in FPRound()
167 DCHECK_EQ(round_mode, FPRoundOdd); in FPRound()
184 if (round_mode == FPTieEven) { in FPRound()
207 DCHECK_EQ(round_mode, FPRoundOdd); in FPRound()
2020 double FPRoundInt(double value, FPRounding round_mode);
2022 float FPToFloat(double value, FPRounding round_mode);
[all …]
Dsimulator-logic-arm64.cc19 FPRounding round_mode) { in FPRoundToDouble() argument
21 sign, exponent, mantissa, round_mode); in FPRoundToDouble()
27 FPRounding round_mode) { in FPRoundToFloat() argument
29 sign, exponent, mantissa, round_mode); in FPRoundToFloat()
35 uint64_t mantissa, FPRounding round_mode) { in FPRoundToFloat16() argument
37 sign, exponent, mantissa, round_mode); in FPRoundToFloat16()
197 float16 Simulator::FPToFloat16(float value, FPRounding round_mode) { in FPToFloat16() argument
199 DCHECK_EQ(round_mode, FPTieEven); in FPToFloat16()
200 USE(round_mode); in FPToFloat16()
238 return FPRoundToFloat16(sign, exponent, mantissa, round_mode); in FPToFloat16()
[all …]
/external/tensorflow/tensorflow/python/ops/
Darray_ops.py3540 round_mode="HALF_AWAY_FROM_ZERO"): argument
3547 round_mode=round_mode)
3562 round_mode="HALF_AWAY_FROM_ZERO", argument
3570 round_mode=round_mode,
/external/mesa3d/src/util/xmlpool/
Dt_options.h197 DRI_CONF_OPT_BEGIN_V(round_mode,enum,def,"0:1") \
/external/vixl/src/aarch64/
Dsimulator-aarch64.h3012 double FPRoundInt(double value, FPRounding round_mode);
3017 double FixedToDouble(int64_t src, int fbits, FPRounding round_mode);
3018 double UFixedToDouble(uint64_t src, int fbits, FPRounding round_mode);
3019 float FixedToFloat(int64_t src, int fbits, FPRounding round_mode);
3020 float UFixedToFloat(uint64_t src, int fbits, FPRounding round_mode);
3023 FPRounding round_mode);
3026 FPRounding round_mode);
Dlogic-aarch64.cc4010 double Simulator::FPRoundInt(double value, FPRounding round_mode) { in FPRoundInt() argument
4020 switch (round_mode) { in FPRoundInt()
/external/mesa3d/src/gallium/drivers/r300/
Dr300_state.c1136 uint32_t round_mode; /* R300_GA_ROUND_MODE: 0x428c */ in r300_create_rs_state() local
1280 round_mode = in r300_create_rs_state()
1300 OUT_CB_REG(R300_GA_ROUND_MODE, round_mode); in r300_create_rs_state()
/external/tensorflow/tensorflow/compiler/tests/
Dunary_ops_test.py499 round_mode="HALF_UP")
523 round_mode="HALF_TO_EVEN")
/external/mesa3d/prebuilt-intermediates/xmlpool/
Doptions.h361 DRI_CONF_OPT_BEGIN_V(round_mode,enum,def,"0:1") \
/external/freetype/src/truetype/
Dttinterp.c2300 FT_Byte round_mode ) in Compute_Round() argument
2302 switch ( round_mode ) in Compute_Round()
/external/tensorflow/
DRELEASE.md41 * Add `round_mode` to `QuantizeAndDequantizeV2` op to select rounding algorithm.
/external/tensorflow/tensorflow/core/ops/
Dops.pbtxt23471 name: "round_mode"
23640 name: "round_mode"
/external/tensorflow/tensorflow/core/ops/compat/
Dops_history.v1.pbtxt46112 name: "round_mode"
46536 name: "round_mode"
46603 name: "round_mode"

12