cidre 0.11.1

Apple frameworks bindings for rust
Documentation
use crate::{arc, define_cls, define_obj_type, mlc, ns, objc};

define_obj_type!(pub InferenceGraph(mlc::Graph));
impl InferenceGraph {
    define_cls!(MLC_INFERENCE_GRAPH);

    #[objc::msg_send(graphWithGraphObjects:)]
    pub fn with_graph_objs(graph_objects: &ns::Array<mlc::Graph>) -> arc::R<Self>;

    #[inline]
    pub fn with_graphs_slice(graph_objects: &[&mlc::Graph]) -> arc::R<Self> {
        let graph_objects = ns::Array::from_slice(graph_objects);
        Self::with_graph_objs(&graph_objects)
    }

    #[objc::msg_send(addInputs:)]
    fn add_inputs_(&mut self, inputs: &ns::Dictionary<ns::String, mlc::Tensor>) -> bool;

    #[inline]
    pub fn add_inputs(
        &mut self,
        inputs: &ns::Dictionary<ns::String, mlc::Tensor>,
    ) -> Result<(), ()> {
        if self.add_inputs_(inputs) {
            Ok(())
        } else {
            Err(())
        }
    }

    #[objc::msg_send(compileWithOptions:device:)]
    pub fn compile_with_options_(
        &mut self,
        options: mlc::GraphCompilationOpts,
        device: &mlc::Device,
    ) -> bool;

    #[inline]
    pub fn compile(
        &mut self,
        options: mlc::GraphCompilationOpts,
        device: &mlc::Device,
    ) -> Result<(), ()> {
        if self.compile_with_options_(options, device) {
            Ok(())
        } else {
            Err(())
        }
    }

    #[objc::msg_send(executeWithInputsData:batchSize:options:completionHandler:)]
    pub fn execute_ch(
        &self,
        input_data: &ns::Dictionary<ns::String, mlc::TensorData>,
        batch_size: usize,
        options: mlc::ExecutionOpts,
        ch: Option<&mut mlc::GraphCompletionHandler>,
    ) -> bool;
}

#[link(name = "mlc", kind = "static")]
unsafe extern "C" {
    static MLC_INFERENCE_GRAPH: &'static objc::Class<InferenceGraph>;
}