From a133b3d062951b423383ac6b7108b633e29e9324 Mon Sep 17 00:00:00 2001 From: Daniel Keysers Date: Wed, 22 Jan 2025 09:12:55 -0800 Subject: [PATCH] Tiny fix: align template parameter order with parameter order. PiperOrigin-RevId: 718411494 --- ops/ops-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ops/ops-inl.h b/ops/ops-inl.h index ecc3f97..f8d54e7 100644 --- a/ops/ops-inl.h +++ b/ops/ops-inl.h @@ -190,7 +190,7 @@ HWY_NOINLINE HWY_MAYBE_UNUSED void RMSNorm(const VecT* HWY_RESTRICT x, } // Same as RMSNorm, but its HWY_RESTRICT forbids passing the same pointer. -template +template HWY_NOINLINE HWY_MAYBE_UNUSED void RMSNormInplace( const WeightT* HWY_RESTRICT weight, VecT* HWY_RESTRICT inout, const size_t size) {