#ifndef CK_DIMENSION_HPP #define CK_DIMENSION_HPP #include "common_header.hpp" namespace ck { template struct NativeDimension { __host__ __device__ static constexpr auto GetLength() { return Number{}; } __host__ __device__ static constexpr auto GetStride() { return Number{}; } }; } // namespace ck #endif