Adds a node to the parent graph that computes the matrix product of two arrays associated with the node and another node. Applies [Graph::matmul] to the parent graph, `this` node and the `b` node. # Example ``` # use ciphercore_base::graphs::create_context; # use ciphercore_base::data_types::{INT32, array_type}; let c = create_context().unwrap(); let g = c.create_graph().unwrap(); let t1 = arra
(&self, b: Node)
| 671 | /// let n3 = n1.matmul(n2).unwrap(); |
| 672 | /// ``` |
| 673 | pub fn matmul(&self, b: Node) -> Result<Node> { |
| 674 | self.get_graph().matmul(self.clone(), b) |
| 675 | } |
| 676 | |
| 677 | /// Adds a node to the parent graph that computes the generatl matrix product of two arrays associated with the node and another node. |
| 678 | /// |