(&self, b: Node, transpose_a: bool, transpose_b: bool)
| 693 | /// ``` |
| 694 | #[doc(hidden)] |
| 695 | pub fn gemm(&self, b: Node, transpose_a: bool, transpose_b: bool) -> Result<Node> { |
| 696 | self.get_graph() |
| 697 | .gemm(self.clone(), b, transpose_a, transpose_b) |
| 698 | } |
| 699 | |
| 700 | /// Adds a node that computes a join of a given type on two named tuples along given key headers. |
| 701 | /// More detailed documentation can be found in [Graph::join]. |