use super::utils::{path_to_cstring, ptr_to_string};
use crate::Tensor;
use failure::Fallible;
use libc::c_int;
use std::borrow::Borrow;
use torch_sys::*;
#[derive(Debug, PartialEq)]
pub enum IValue {
None,
Tensor(crate::Tensor),
Double(f64),
Int(i64),
Bool(bool),
Tuple(Vec<IValue>),
IntList(Vec<i64>),
DoubleList(Vec<f64>),
BoolList(Vec<bool>),
String(String),
TensorList(Vec<crate::Tensor>),
GenericList(Vec<IValue>),
GenericDict(Vec<(IValue, IValue)>),
}
impl From<()> for IValue {
fn from((): ()) -> Self {
IValue::None
}
}
impl<T1: Into<IValue>, T2: Into<IValue>> From<(T1, T2)> for IValue {
fn from((p1, p2): (T1, T2)) -> Self {
IValue::Tuple(vec![p1.into(), p2.into()])
}
}
impl<T1: Into<IValue>, T2: Into<IValue>, T3: Into<IValue>> From<(T1, T2, T3)> for IValue {
fn from((p1, p2, p3): (T1, T2, T3)) -> Self {
IValue::Tuple(vec![p1.into(), p2.into(), p3.into()])
}
}
impl<T1: Into<IValue>, T2: Into<IValue>, T3: Into<IValue>, T4: Into<IValue>> From<(T1, T2, T3, T4)>
for IValue
{
fn from((p1, p2, p3, p4): (T1, T2, T3, T4)) -> Self {
IValue::Tuple(vec![p1.into(), p2.into(), p3.into(), p4.into()])
}
}
macro_rules! impl_from {
($type_:ty, $cons:ident) => {
impl From<$type_> for IValue {
fn from(v: $type_) -> Self {
IValue::$cons(v)
}
}
};
}
impl_from!(i64, Int);
impl_from!(f64, Double);
impl_from!(bool, Bool);
impl_from!(String, String);
impl_from!(Tensor, Tensor);
impl_from!(Vec<i64>, IntList);
impl_from!(Vec<f64>, DoubleList);
impl_from!(Vec<bool>, BoolList);
impl_from!(Vec<crate::Tensor>, TensorList);
impl_from!(Vec<IValue>, GenericList);
impl_from!(Vec<(IValue, IValue)>, GenericDict);
impl From<&str> for IValue {
fn from(s: &str) -> Self {
IValue::String(s.to_string())
}
}
impl IValue {
pub(super) fn to_c(&self) -> Fallible<*mut CIValue> {
let c = unsafe_torch_err!({
match self {
IValue::Tensor(tensor) => ati_tensor(tensor.c_tensor),
IValue::Int(i) => ati_int(*i),
IValue::None => ati_none(),
IValue::Double(f) => ati_double(*f),
IValue::Bool(b) => ati_bool(if *b { 1 } else { 0 }),
IValue::Tuple(v) => {
let v = v.iter().map(Self::to_c).collect::<Fallible<Vec<_>>>()?;
let tuple = ati_tuple(v.as_ptr(), v.len() as c_int);
for x in v {
ati_free(x);
}
tuple
}
IValue::GenericList(v) => {
let v = v.iter().map(Self::to_c).collect::<Fallible<Vec<_>>>()?;
let list = ati_generic_list(v.as_ptr(), v.len() as c_int);
for x in v {
ati_free(x);
}
list
}
IValue::IntList(v) => ati_int_list(v.as_ptr(), v.len() as c_int),
IValue::DoubleList(v) => ati_double_list(v.as_ptr(), v.len() as c_int),
IValue::BoolList(v) => {
let v: Vec<i8> = v.iter().map(|&b| if b { 1 } else { 0 }).collect();
ati_bool_list(v.as_ptr(), v.len() as c_int)
}
IValue::TensorList(v) => {
let v = v.iter().map(|t| t.c_tensor).collect::<Vec<_>>();
ati_tensor_list(v.as_ptr(), v.len() as c_int)
}
IValue::String(string) => {
let c_str = std::ffi::CString::new(string.as_str())?;
ati_string(c_str.as_ptr())
}
IValue::GenericDict(dict) => {
let v = dict
.iter()
.flat_map(|(k, v)| vec![Self::to_c(k), Self::to_c(v)])
.collect::<Fallible<Vec<_>>>()?;
let dict = ati_generic_dict(v.as_ptr(), dict.len() as c_int);
for x in v {
ati_free(x);
}
dict
}
}
});
Ok(c)
}
pub(super) fn of_c(c_ivalue: *mut CIValue) -> Fallible<Self> {
let tag = unsafe_torch_err!({ ati_tag(c_ivalue) });
let v = match tag {
0 => IValue::None,
1 => {
let c_tensor = unsafe_torch_err!({ ati_to_tensor(c_ivalue) });
IValue::Tensor(crate::Tensor { c_tensor })
}
2 => IValue::Double(unsafe_torch_err!({ ati_to_double(c_ivalue) })),
3 => IValue::Int(unsafe_torch_err!({ ati_to_int(c_ivalue) })),
4 => {
let b = unsafe_torch_err!({ ati_to_bool(c_ivalue) });
ensure!(b >= 0, "unexpected bool value {}", b);
IValue::Bool(b != 0)
}
5 => {
let len = unsafe_torch_err!({ ati_tuple_length(c_ivalue) });
let mut c_ivalues: Vec<_> =
(0..len).map(|_| std::ptr::null_mut::<CIValue>()).collect();
unsafe_torch_err!(ati_to_tuple(c_ivalue, c_ivalues.as_mut_ptr(), len));
let vec: Result<Vec<_>, _> = c_ivalues
.iter()
.map(|&c_ivalue| (Self::of_c(c_ivalue)))
.collect();
IValue::Tuple(vec?)
}
6 => {
let len = unsafe_torch_err!({ ati_length(c_ivalue) });
let mut c_array = vec![0i64; len as usize];
unsafe_torch_err!(ati_to_int_list(c_ivalue, c_array.as_mut_ptr(), len));
IValue::IntList(c_array)
}
7 => {
let len = unsafe_torch_err!({ ati_length(c_ivalue) });
let mut c_array = vec![0f64; len as usize];
unsafe_torch_err!(ati_to_double_list(c_ivalue, c_array.as_mut_ptr(), len));
IValue::DoubleList(c_array)
}
8 => {
let len = unsafe_torch_err!({ ati_length(c_ivalue) });
let mut c_array = vec![0i8; len as usize];
unsafe_torch_err!(ati_to_bool_list(c_ivalue, c_array.as_mut_ptr(), len));
IValue::BoolList(c_array.iter().map(|&x| x != 0).collect())
}
9 => {
let ptr = unsafe_torch_err!({ ati_to_string(c_ivalue) });
let string = match unsafe { ptr_to_string(ptr) } {
None => bail!("unable to decode string"),
Some(s) => s,
};
IValue::String(string)
}
10 => {
let len = unsafe_torch_err!({ ati_length(c_ivalue) });
let mut c_tensors: Vec<_> =
(0..len).map(|_| std::ptr::null_mut::<C_tensor>()).collect();
unsafe_torch_err!(ati_to_tensor_list(c_ivalue, c_tensors.as_mut_ptr(), len));
let vec: Vec<_> = c_tensors
.iter()
.map(|&c_tensor| (Tensor { c_tensor }))
.collect();
IValue::TensorList(vec)
}
12 => {
let len = unsafe_torch_err!({ ati_length(c_ivalue) });
let mut c_ivalues: Vec<_> =
(0..len).map(|_| std::ptr::null_mut::<CIValue>()).collect();
unsafe_torch_err!(ati_to_generic_list(c_ivalue, c_ivalues.as_mut_ptr(), len));
let vec: Result<Vec<_>, _> = c_ivalues
.iter()
.map(|&c_ivalue| (Self::of_c(c_ivalue)))
.collect();
IValue::GenericList(vec?)
}
13 => {
let len = unsafe_torch_err!({ ati_length(c_ivalue) });
let mut c_ivalues: Vec<_> = (0..2 * len)
.map(|_| std::ptr::null_mut::<CIValue>())
.collect();
unsafe_torch_err!(ati_to_generic_dict(c_ivalue, c_ivalues.as_mut_ptr(), len));
let mut res: Vec<(IValue, IValue)> = vec![];
for i in 0..(len as usize) {
let key = Self::of_c(c_ivalues[2 * i])?;
let value = Self::of_c(c_ivalues[2 * i + 1])?;
res.push((key, value))
}
IValue::GenericDict(res)
}
_ => bail!("unhandled tag {}", tag),
};
unsafe_torch_err!({ ati_free(c_ivalue) });
Ok(v)
}
}
#[derive(Debug)]
pub struct CModule {
pub(super) c_module: *mut CModule_,
}
unsafe impl Send for CModule {}
unsafe impl Sync for CModule {}
impl Drop for CModule {
fn drop(&mut self) {
unsafe_torch!({ atm_free(self.c_module) })
}
}
impl CModule {
pub fn load<T: AsRef<std::path::Path>>(path: T) -> Fallible<CModule> {
let path = path_to_cstring(path)?;
let c_module = unsafe_torch_err!({ atm_load(path.as_ptr()) });
Ok(CModule { c_module })
}
pub fn load_data<T: std::io::Read>(f: &mut T) -> Fallible<CModule> {
let mut buffer = Vec::new();
f.read_to_end(&mut buffer)?;
let buffer_ptr = buffer.as_ptr() as *const i8;
let c_module = unsafe_torch_err!({ atm_load_str(buffer_ptr, buffer.len()) });
Ok(CModule { c_module })
}
pub fn forward_ts<T: Borrow<Tensor>>(&self, ts: &[T]) -> Fallible<Tensor> {
let ts: Vec<_> = ts.iter().map(|x| x.borrow().c_tensor).collect();
let c_tensor =
unsafe_torch_err!({ atm_forward(self.c_module, ts.as_ptr(), ts.len() as c_int) });
Ok(Tensor { c_tensor })
}
pub fn forward_is<T: Borrow<IValue>>(&self, ts: &[T]) -> Fallible<IValue> {
let ts = ts
.iter()
.map(|x| x.borrow().to_c())
.collect::<Fallible<Vec<_>>>()?;
let c_ivalue =
unsafe_torch_err!({ atm_forward_(self.c_module, ts.as_ptr(), ts.len() as c_int) });
for x in ts {
unsafe { ati_free(x) }
}
IValue::of_c(c_ivalue)
}
}
#[cfg(test)]
mod tests {
use super::IValue;
fn round_trip<T: Into<IValue>>(t: T) {
let ivalue: IValue = t.into();
let ivalue2 = IValue::of_c(ivalue.to_c().unwrap()).unwrap();
assert_eq!(ivalue, ivalue2);
}
#[test]
fn ivalue_round_trip() {
round_trip(());
round_trip(true);
round_trip(false);
round_trip(-1);
round_trip(42);
round_trip(3.1415);
round_trip("".to_string());
round_trip("foobar".to_string());
round_trip((42, 3.1415));
round_trip(vec![42, 1337]);
round_trip(vec![2.71828, 3.141592, 299792458.00001]);
round_trip((
vec![true, false, true, true],
vec![2.71828, 3.141592, 299792458.00001],
));
round_trip(vec![IValue::from(42), IValue::from("foobar")]);
round_trip(vec![
(IValue::from(42), IValue::from("foobar")),
(IValue::from("foo"), IValue::from("bar")),
]);
}
}