Skip to content

Releases: DeepViewML/deepviewrt-rs

v0.4.0

22 Sep 15:22
b96510a
Compare
Choose a tag to compare
  • NNContext has been changed to Context
  • Context now has an owned parameter. Additionally most functions no longer return deepviewrt-rs structs but instead references to those structs with the wrapped struct being held by the parent. (Context::tensor() is an exception)

This is a list of new functions
Context
sizeof
new
engine
model
load_model
unload_model
tensor
tensor_index
unsafe from_ptr
drop

Engine
to_ptr
to_ptr_mut

Model
name
label_count
label
outputs
layer_count
layer_name
layer_lookup

Tensor
set_tensor_type
engine
dims
axis
zeros
set_scales
unmap is now unsafe

DeepViewRT for Rust 0.3.0

08 Sep 20:45
7f51878
Compare
Choose a tag to compare

Additional DeepViewRT API added to support VAAL for Rust.

v0.2.6

21 Aug 16:15
272f990
Compare
Choose a tag to compare

Added Error enum for better error handling
Added Drop for NNTensor