1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
use crate::DataType;
use thiserror::Error;
#[derive(Debug, Error)]
#[error("Function was not set in `function::Builder`")]
pub struct FunctionNotFoundError;
#[derive(Debug, Error)]
#[error("Expected type `{expected}` but found `{actual}`")]
pub struct TypeMismatchError {
pub expected: String,
pub actual: String,
}
#[derive(Debug, Error)]
pub enum NDArrayError {
#[error("Cannot convert from an empty array.")]
EmptyArray,
#[error("Invalid datatype when attempting to convert ndarray.")]
InvalidDatatype(#[from] tvm_sys::datatype::ParseDataTypeError),
#[error("a shape error occurred in the Rust ndarray library")]
ShapeError(#[from] ndarray::ShapeError),
#[error("Expected type `{expected}` but found `{actual}`")]
DataTypeMismatch {
expected: DataType,
actual: DataType,
},
}
#[derive(Debug, Error)]
pub enum Error {
#[error("{0}")]
Downcast(#[from] tvm_sys::errors::ValueDowncastError),
#[error("raw pointer passed across boundary was null")]
Null,
#[error("failed to load module due to invalid path {0}")]
ModuleLoadPath(String),
#[error("failed to convert String into CString due to embedded nul character")]
ToCString(#[from] std::ffi::NulError),
#[error("failed to convert CString into String")]
FromCString(#[from] std::ffi::IntoStringError),
#[error("Handle `{0}` is null.")]
NullHandle(String),
#[error("{0}")]
NDArray(#[from] NDArrayError),
#[error("{0}")]
CallFailed(String),
#[error("this case will never occur")]
Infallible(#[from] std::convert::Infallible),
#[error("a panic occurred while executing a Rust packed function")]
Panic,
#[error(
"one or more error diagnostics were emitted, please check diagnostic render for output."
)]
DiagnosticError(String),
#[error("{0}")]
Raw(String),
}
impl Error {
pub fn from_raw_tvm(raw: &str) -> Error {
let err_header = raw.find(":").unwrap_or(0);
let (err_ty, err_content) = raw.split_at(err_header);
match err_ty {
"DiagnosticError" => Error::DiagnosticError((&err_content[1..]).into()),
_ => Error::Raw(raw.into()),
}
}
}
impl Error {
pub fn downcast(actual_type: String, expected_type: &'static str) -> Error {
Self::Downcast(tvm_sys::errors::ValueDowncastError {
actual_type,
expected_type,
})
}
}