From 91846ee79b385f88fea67150f1a82a5a9058e406 Mon Sep 17 00:00:00 2001 From: Ed Addario Date: Mon, 29 Dec 2025 13:02:06 +0000 Subject: [PATCH] Change checkpoint file magic --- src/llama-quant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llama-quant.cpp b/src/llama-quant.cpp index cab4ecaeec..f518c10781 100644 --- a/src/llama-quant.cpp +++ b/src/llama-quant.cpp @@ -695,7 +695,7 @@ static std::unordered_map target_bpw_type( constexpr double epsilon = 1e-12; constexpr double infinity = std::numeric_limits::infinity(); - constexpr uint32_t file_magic = 0x42505731; // BPW1 + constexpr uint32_t file_magic = 0x4d534531; // MSE1 constexpr uint64_t arbitrary_magic = 0xeabada55cafed00d; const char * func = __func__;