tf.raw_ops.MatMul

Multiply the matrix "a" by the matrix "b".

The inputs must be two-dimensional matrices and the inner dimension of "a" (after being transposed if transpose_a is true) must match the outer dimension of "b" (after being transposed if transposed_b is true).

aA Tensor. Must be one of the following types: bfloat16, half, float32, float64, int32, int64, uint8, uint16, uint32, uint64, complex64, complex128.
bA Tensor. Must have the same type as a.
transpose_aAn optional bool. Defaults to False. If true, "a" is transposed before multiplication.
transpose_bAn optional bool. Defaults to False. If true, "b" is transposed before multiplication.
grad_aAn optional bool. Defaults to False.
grad_bAn optional bool. Defaults to False.
nameA name for the operation (optional).

A Tensor. Has the same type as a.