truston 0.1.0

A high-performance Rust client library for NVIDIA Triton Inference Server
Documentation
1
2
3
4
5
6
7
8
use std::vec;

use truston::client::io::{DataType, InferInput};

fn main() {
    let dummy_input = DataType::F32(vec![5.0, 5.0, 5.0]);
    let _input = InferInput::new("input_0".into(), vec![1, 3], dummy_input);
}