Extract the output storage from a transformation This is useful for getting the resulting TensorStorage from operations
type NegOp = Neg<SomeTensor>;type Result = OutputOf<NegOp>; // TensorStorage<...> Copy
type NegOp = Neg<SomeTensor>;type Result = OutputOf<NegOp>; // TensorStorage<...>
Extract the output storage from a transformation This is useful for getting the resulting TensorStorage from operations