Searched defs:matrix_transpose (Results 1 - 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/python/ops/
H A Darray_ops.py1420 # (this common operation has a shorthand `matrix_transpose`)
1459 @tf_export("matrix_transpose", "linalg.transpose")
1460 def matrix_transpose(a, name="matrix_transpose", conjugate=False): function
1467 tf.matrix_transpose(x) # [[1, 4],
1473 tf.matrix_transpose(x, conjugate=True) # [[1 - 1j, 4 - 4j],
1479 # tf.matrix_transpose(x) is shape [1, 2, 4, 3]
1490 tf.matmul(matrix, tf.matrix_transpose(b))
1497 to tf.conj(tf.matrix_transpose(input)).

Completed in 130 milliseconds