Searched refs:matrix_x (Results 1 – 3 of 3) sorted by relevance
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | determinant_op_test.py | 36 def _compareDeterminantBase(self, matrix_x, tf_ans): argument 38 shape = matrix_x.shape 40 np_ans = np.ones(shape[:-2]).astype(matrix_x.dtype) 42 np_ans = np.array(np.linalg.det(matrix_x)).astype(matrix_x.dtype) 46 def _compareLogDeterminantBase(self, matrix_x, tf_ans): argument 48 shape = matrix_x.shape 50 np_sign, np_ans = (1.0, np.zeros(shape[:-2]).astype(matrix_x.dtype)) 52 np_sign, np_ans = np.linalg.slogdet(matrix_x) 53 np_ans = np_ans.astype(matrix_x.dtype) 63 def _compareDeterminant(self, matrix_x): argument [all …]
|
/external/libxcam/xcore/ |
D | surview_fisheye_dewarp.cpp | 119 Mat4f matrix_x(Vec4f(1.0f, 0.0f, 0.0f, 0.0f), in generate_rotation_matrix() local 134 return matrix_z * matrix_y * matrix_x; in generate_rotation_matrix()
|
/external/tensorflow/tensorflow/python/keras/_impl/keras/layers/ |
D | recurrent.py | 1378 matrix_x = K.dot(inputs, self.kernel) 1380 matrix_x = K.bias_add(matrix_x, self.bias) 1385 x_z = matrix_x[:, :self.units] 1386 x_r = matrix_x[:, self.units:2 * self.units] 1393 x_h = matrix_x[:, 2 * self.units:]
|