@@ -97,7 +97,7 @@ struct BGemmKernel<ruy::Path::kStandardCpp, TBitpacked, MulParams> {
9797 RUY_DCHECK_LE (clamped_end_col, end_col);
9898 RUY_DCHECK_LE (end_col - clamped_end_col, RhsLayout::kCols );
9999
100- RUY_DCHECK_EQ (dst->layout .order , Order::kColMajor );
100+ RUY_DCHECK_EQ (dst->layout .order , ruy:: Order::kColMajor );
101101
102102 ruy::profiler::ScopeLabel label (
103103 " Binary Kernel (Standard Cpp), Bitpacked Output." );
@@ -145,8 +145,8 @@ template <typename DstScalar>
145145struct BGemmKernel <ruy::Path::kNeon , DstScalar,
146146 BinaryMulParams<std::int32_t , DstScalar>> {
147147 Tuning tuning = Tuning::kAuto ;
148- using LhsLayout = FixedKernelLayout<Order::kColMajor , 4 , 4 >;
149- using RhsLayout = FixedKernelLayout<Order::kColMajor , 4 , 4 >;
148+ using LhsLayout = FixedKernelLayout<ruy:: Order::kColMajor , 4 , 4 >;
149+ using RhsLayout = FixedKernelLayout<ruy:: Order::kColMajor , 4 , 4 >;
150150 explicit BGemmKernel (Tuning tuning_) : tuning(tuning_) {}
151151 void Run (const ruy::PMat<TBitpacked>& lhs, const ruy::PMat<TBitpacked>& rhs,
152152 const BinaryMulParams<std::int32_t , DstScalar>& mul_params,
@@ -176,8 +176,8 @@ template <typename DstScalar>
176176struct BGemmKernel <ruy::Path::kNeon , DstScalar,
177177 BinaryMulParams<std::int16_t , DstScalar>> {
178178 Tuning tuning = Tuning::kAuto ;
179- using LhsLayout = FixedKernelLayout<Order::kColMajor , 4 , 8 >;
180- using RhsLayout = FixedKernelLayout<Order::kColMajor , 4 , 4 >;
179+ using LhsLayout = FixedKernelLayout<ruy:: Order::kColMajor , 4 , 8 >;
180+ using RhsLayout = FixedKernelLayout<ruy:: Order::kColMajor , 4 , 4 >;
181181 explicit BGemmKernel (Tuning tuning_) : tuning(tuning_) {}
182182 void Run (const ruy::PMat<TBitpacked>& lhs, const ruy::PMat<TBitpacked>& rhs,
183183 const BinaryMulParams<std::int16_t , DstScalar>& mul_params,
@@ -200,8 +200,8 @@ template <typename DstScalar>
200200struct BGemmKernel <ruy::Path::kNeon , DstScalar,
201201 BinaryMulParams<std::int32_t , DstScalar>> {
202202 Tuning tuning = Tuning::kAuto ;
203- using LhsLayout = FixedKernelLayout<Order::kColMajor , 4 , 4 >;
204- using RhsLayout = FixedKernelLayout<Order::kColMajor , 4 , 4 >;
203+ using LhsLayout = FixedKernelLayout<ruy:: Order::kColMajor , 4 , 4 >;
204+ using RhsLayout = FixedKernelLayout<ruy:: Order::kColMajor , 4 , 4 >;
205205 explicit BGemmKernel (Tuning tuning_) : tuning(tuning_) {}
206206 void Run (const ruy::PMat<TBitpacked>& lhs, const ruy::PMat<TBitpacked>& rhs,
207207 const BinaryMulParams<std::int32_t , DstScalar>& mul_params,
0 commit comments