Change checkpoint file magic

This commit is contained in:
Ed Addario 2025-12-29 13:02:06 +00:00
parent b7b705f965
commit 91846ee79b
No known key found for this signature in database
GPG Key ID: E7875815A3230993
1 changed files with 1 additions and 1 deletions

View File

@ -695,7 +695,7 @@ static std::unordered_map<std::string, ggml_type> target_bpw_type(
constexpr double epsilon = 1e-12;
constexpr double infinity = std::numeric_limits<double>::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__;