Searched refs:matrix_x (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | determinant_op_test.py | 38 def _compareDeterminantBase(self, matrix_x, tf_ans): argument 40 shape = matrix_x.shape 42 np_ans = np.ones(shape[:-2]).astype(matrix_x.dtype) 44 np_ans = np.array(np.linalg.det(matrix_x)).astype(matrix_x.dtype) 48 def _compareLogDeterminantBase(self, matrix_x, tf_ans): argument 50 shape = matrix_x.shape 52 np_sign, np_ans = (1.0, np.zeros(shape[:-2]).astype(matrix_x.dtype)) 54 np_sign, np_ans = np.linalg.slogdet(matrix_x) 55 np_ans = np_ans.astype(matrix_x.dtype) 65 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/layers/ |
D | recurrent_v2.py | 363 matrix_x = K.dot(cell_inputs, kernel) 364 matrix_x = K.bias_add(matrix_x, input_bias) 366 x_z, x_r, x_h = array_ops.split(matrix_x, 3, axis=1)
|
D | recurrent.py | 1715 matrix_x = K.dot(inputs, self.kernel) 1718 matrix_x = K.bias_add(matrix_x, input_bias) 1720 x_z = matrix_x[:, :self.units] 1721 x_r = matrix_x[:, self.units: 2 * self.units] 1722 x_h = matrix_x[:, 2 * self.units:]
|