Evaluation stubs for gather-based AVX2/AVX512 Sigmoid

PiperOrigin-RevId: 337414295
diff --git a/src/math/sigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div.c b/src/math/sigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div.c
index 5c68c02..bdf978a 100644
--- a/src/math/sigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div.c
+++ b/src/math/sigmoid-avx512f-rr2-lut32-p2-perm2-scalef-div.c
@@ -55,7 +55,7 @@
     const __m512 vz = _mm512_castsi512_ps(_mm512_or_epi32(_mm512_castps_si512(vx), vsign_mask));
 
     // Compute reduced argument n := round(z / log(2), 5).
-    // We do it by adding a large number (magic bias), which cause rounding of the result to 4 fractional bits, then
+    // We do it by adding a large number (magic bias), which cause rounding of the result to 5 fractional bits, then
     // subtracing the large number back. The addition is combined with multiplication by log2e into a single FMA
     // instruction. The trick with adding large number is valid only within certain bounds (|z / log(2)| <= 2**17,
     // i.e. |z| <= 0x1.62E43p+16 = 90852.1875), but that is acceptable, because inputs x outside of