1 #pragma once 2 #include <c10/util/DimVector.h> 3 4 namespace at { 5 6 // Re-declaring 'DimVector' type and size inside 'at' namespace. 7 // This is done to avoid modifying every use into their 'c10' 8 // equivalent. 9 10 using c10::kDimVectorStaticSize; 11 using c10::DimVector; 12 13 } // namespace at 14