Home
last modified time | relevance | path

Searched refs:FloatOperation (Results 1 – 8 of 8) sorted by relevance

/external/gemmlowp/meta/
Dlegacy_operations_common.h37 class FloatOperation {
39 FloatOperation(std::int32_t lhs_offset, std::int32_t rhs_offset, in FloatOperation() function
Dlegacy_multi_thread_gemv.h53 class GemvFloatOperation : public FloatOperation {
57 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemvFloatOperation()
Dlegacy_multi_thread_gemm.h91 class GemmFloatOperation : public FloatOperation {
95 : FloatOperation(lhs_offset, rhs_offset, result_offset) {} in GemmFloatOperation()
/external/python/cpython3/Lib/test/
Dtest_decimal.py73 C.FloatOperation] if C else None,
76 P.FloatOperation]
2749 FloatOperation = decimal.FloatOperation
2761 self.assertTrue(issubclass(FloatOperation, DecimalException))
2762 self.assertTrue(issubclass(FloatOperation, TypeError))
3778 FloatOperation = self.decimal.FloatOperation
3783 self.assertFalse(c.traps[FloatOperation])
3788 self.assertTrue(c.flags[FloatOperation])
3792 self.assertTrue(c.flags[FloatOperation])
3797 self.assertFalse(c.flags[FloatOperation])
[all …]
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py157 C.FloatOperation: P.FloatOperation,
300 if maxcontext.flags[P.FloatOperation]:
301 context.p.flags[P.FloatOperation] = True
/external/python/cpython3/Doc/library/
Ddecimal.rst101 :const:`Overflow`, :const:`Underflow` and :const:`FloatOperation`.
158 If the :exc:`FloatOperation` signal is trapped, accidental mixing of
163 >>> c.traps[FloatOperation] = True
167 decimal.FloatOperation: [<class 'decimal.FloatOperation'>]
171 decimal.FloatOperation: [<class 'decimal.FloatOperation'>]
394 :class:`float` arguments raise an exception if the :exc:`FloatOperation`
1620 .. class:: FloatOperation
1628 operation is silently recorded by setting :exc:`FloatOperation` in the
1633 conversions are silent. All other mixed operations raise :exc:`FloatOperation`.
1648 FloatOperation(DecimalException, exceptions.TypeError)
/external/python/cpython3/Lib/
D_pydecimal.py402 class FloatOperation(DecimalException, TypeError): class
419 Underflow, InvalidOperation, Subnormal, FloatOperation]
702 context._raise_error(FloatOperation,
6100 context.flags[FloatOperation] = 1
6102 context._raise_error(FloatOperation,
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1124 * The :exc:`~decimal.FloatOperation` signal optionally enables stricter