macro_rules! vector { ($($x:expr),*) => { ... }; }
Vector definition
use tensorrs::vector; use tensorrs::linalg::Vector; let a = vector![1, 2, 3];