tract-tensorflow 0.22.1

Tiny, no-nonsense, self contained, TensorFlow and ONNX inference
Documentation
1
2
3
4
5
6
7
8
9
mod philox;
mod random_uniform;

use crate::model::TfOpRegister;

pub fn register_all_ops(reg: &mut TfOpRegister) {
    reg.insert("RandomUniform", random_uniform::random_uniform);
    reg.insert("RandomUniformInt", random_uniform::random_uniform_int);
}