MatMulTransposeB sets the optional transpose_b attribute to value. value: If true, "b" is transposed before multiplication. If not specified, defaults to false
(value bool)
| 34455 | // value: If true, "b" is transposed before multiplication. |
| 34456 | // If not specified, defaults to false |
| 34457 | func MatMulTransposeB(value bool) MatMulAttr { |
| 34458 | return func(m optionalAttr) { |
| 34459 | m["transpose_b"] = value |
| 34460 | } |
| 34461 | } |
| 34462 | |
| 34463 | // Multiply the matrix "a" by the matrix "b". |
| 34464 | // |