From 6f7c5b0095ec5ac36a7f9e5034a032ff5147c619 Mon Sep 17 00:00:00 2001 From: mert-kurttutan Date: Tue, 16 Jul 2024 00:42:42 +0200 Subject: [PATCH] Fix the explanation comment for AMX-INT8 bit Co-authored-by: Gerd Zellweger --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 05568b6..8cee838 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3858,7 +3858,7 @@ bitflags! { const AVX512_FP16 = 1 << 23; /// Bit 24: AMX-TILE. If 1, the processor supports tile architecture const AMX_TILE = 1 << 24; - /// Bit 24: AMX-INT8. If 1, the processor supports tile computational operations on 8-bit integers. + /// Bit 25: AMX-INT8. If 1, the processor supports tile computational operations on 8-bit integers. const AMX_INT8 = 1 << 25; } }