From 60132a16de0d90ba86f8e3a349c4cee7d80e1d04 Mon Sep 17 00:00:00 2001 From: dc-dc-dc Date: Mon, 18 Dec 2023 17:07:37 -0500 Subject: [PATCH] uint64_t instead of uint32_t --- mlx/safetensor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlx/safetensor.h b/mlx/safetensor.h index 19aa26aa2..2e2b9c9c1 100644 --- a/mlx/safetensor.h +++ b/mlx/safetensor.h @@ -94,7 +94,7 @@ class JSONNode { JSONObject* object; JSONList* list; std::string* s; - uint32_t f; + uint64_t f; } _values; Type _type; };