Skip to main content

Module error

Module error 

Source
Expand description

Runtime error types for tensor execution.

§Examples

use tenferro_tensor::Error;

let err = Error::AxisOutOfBounds {
    op: "dot_general",
    axis: 2,
    rank: 1,
};
assert!(err.to_string().contains("dot_general"));

Enums§

Error
Runtime failures produced by tensor execution backends and helpers.

Type Aliases§

Result
Result type alias for runtime tensor operations.