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.py68 C.FloatOperation] if C else None,
71 P.FloatOperation]
2756 FloatOperation = decimal.FloatOperation
2768 self.assertTrue(issubclass(FloatOperation, DecimalException))
2769 self.assertTrue(issubclass(FloatOperation, TypeError))
3785 FloatOperation = self.decimal.FloatOperation
3790 self.assertFalse(c.traps[FloatOperation])
3795 self.assertTrue(c.flags[FloatOperation])
3799 self.assertTrue(c.flags[FloatOperation])
3804 self.assertFalse(c.flags[FloatOperation])
[all …]
/external/python/cpython3/Modules/_decimal/tests/
Ddeccheck.py174 C.FloatOperation: P.FloatOperation,
317 if maxcontext.flags[P.FloatOperation]:
318 context.p.flags[P.FloatOperation] = True
/external/python/cpython3/Doc/library/
Ddecimal.rst106 :const:`Overflow`, :const:`Underflow` and :const:`FloatOperation`.
163 If the :exc:`FloatOperation` signal is trapped, accidental mixing of
168 >>> c.traps[FloatOperation] = True
172 decimal.FloatOperation: [<class 'decimal.FloatOperation'>]
176 decimal.FloatOperation: [<class 'decimal.FloatOperation'>]
399 :class:`float` arguments raise an exception if the :exc:`FloatOperation`
1637 .. class:: FloatOperation
1645 operation is silently recorded by setting :exc:`FloatOperation` in the
1650 conversions are silent. All other mixed operations raise :exc:`FloatOperation`.
1665 FloatOperation(DecimalException, exceptions.TypeError)
/external/python/cpython3/Lib/
D_pydecimal.py406 class FloatOperation(DecimalException, TypeError): class
423 Underflow, InvalidOperation, Subnormal, FloatOperation]
660 context._raise_error(FloatOperation,
6061 context.flags[FloatOperation] = 1
6063 context._raise_error(FloatOperation,
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1124 * The :exc:`~decimal.FloatOperation` signal optionally enables stricter