cidre 0.11.9

Apple frameworks bindings for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{arc, mps::graph, ns, objc};

impl graph::Graph {
    #[objc::msg_send(matrixMultiplicationWithPrimaryTensor:secondaryTensor:name:)]
    pub fn mat_mul(
        &self,
        primary: &graph::Tensor,
        secondary: &graph::Tensor,
        name: Option<&ns::String>,
    ) -> arc::R<graph::Tensor>;
}