Home
last modified time | relevance | path

Searched refs:__matmul__ (Results 1 – 17 of 17) sorted by relevance

/external/tensorflow/tensorflow/python/distribute/
Dps_values.py307 def __matmul__(self, o): member in AggregatingVariable
309 return self._v.__matmul__(o)
Dvalues.py345 def __matmul__(self, o): member in DistributedDelegate
347 return self._get_as_operand().__matmul__(o)
/external/tensorflow/tensorflow/python/keras/mixed_precision/
Dautocast_variable.py479 def __matmul__(self, o): member in AutoCastVariable
481 return self.read_value().__matmul__(o)
/external/python/cpython3/Lib/test/
Dtest_augassign.py146 def __matmul__(self, val): member in AugAssignTest.testCustomMethods2.testall
Dtest_operator.py219 def __matmul__(self, other): member in OperatorTestCase.test_matmul.M
Dtest_grammar.py1822 def __matmul__(self, o): member in GrammarTests.test_matrix_mul.M
Dtest_weakref.py290 def __matmul__(self, other): member in ReferencesTestCase.test_proxy_matmul.C
/external/tensorflow/tensorflow/python/kernel_tests/
Dmatmul_op_test.py182 r = type(x).__matmul__(x, y)
Dvariables_test.py405 matmul = var_m.__matmul__([[10.0], [20.0]])
/external/python/cpython3/Lib/
Doperator.py433 __matmul__ = matmul variable
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestmagicmethods.py470 m.__matmul__.return_value = 42
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinear_operator.py686 def __matmul__(self, other): member in LinearOperator
/external/python/cpython3/Doc/library/
Doperator.rst143 __matmul__(a, b)
Dunittest.mock.rst2022 ``__add__``, ``__sub__``, ``__mul__``, ``__matmul__``, ``__div__``, ``__truediv__``,
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst283 …:`~PyNumberMethods.nb_matrix_multiply` | :c:type:`binaryfunc` | __matmul__ |
286 …:`~PyNumberMethods.nb_inplace_matrix_multiply` | :c:type:`binaryfunc` | __matmul__ |
/external/python/cpython3/Doc/whatsnew/
D3.5.rst276 can be implemented by defining :meth:`__matmul__`, :meth:`__rmatmul__`,
2017 :meth:`__divmod__` and :meth:`__matmul__` operators.
/external/python/cpython3/Doc/reference/
Ddatamodel.rst2350 object.__matmul__(self, other)