hyperlattice 0.6.0

A small Rust linear algebra library with hyperreal-backed scalar, vector, and matrix types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "hyperreal-dispatch-trace")]
macro_rules! trace_dispatch {
    ($layer:expr, $operation:expr, $path:expr) => {
        ::hyperreal::dispatch_trace::record($layer, $operation, $path);
    };
}

#[cfg(not(feature = "hyperreal-dispatch-trace"))]
macro_rules! trace_dispatch {
    ($layer:expr, $operation:expr, $path:expr) => {};
}

pub(crate) use trace_dispatch;