xref: /aosp_15_r20/external/pytorch/aten/src/ATen/core/DimVector.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
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