Home
last modified time | relevance | path

Searched refs:rhs0 (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/python/kernel_tests/
Dmatrix_triangular_solve_op_test.py101 rhs0 = np.array([[1.]])
102 self._verifySolveAllWaysReal(matrix, rhs0)
105 rhs0 = np.array([[1.], [1.]])
106 self._verifySolveAllWaysReal(matrix, rhs0)
115 rhs0 = np.array([[1. + 1j]])
116 self._verifySolveAllWaysComplex(matrix, rhs0)
120 rhs0 = np.array([[1.], [1.]]).astype(np.complex64)
121 rhs0 += 1j * rhs0
122 self._verifySolveAllWaysComplex(matrix, rhs0)
/external/tensorflow/tensorflow/compiler/xla/service/
Dalgebraic_simplifier_test.cc4473 HloInstruction* rhs0 = builder.AddInstruction( in TEST_P() local
4482 HloInstruction::CreateConcatenate(rhs_shape, {rhs0, rhs1, rhs2}, 0)); in TEST_P()