pub type ArcLock<T> = Arc<RwLock<T>>;
Shared Lock used for our tensors
struct ArcLock<T> { /* private fields */ }