removed trailing whitespaces

This commit is contained in:
Salvatore Rossitto 2026-03-12 19:02:54 +01:00
parent 2e324f6c9a
commit 959f789bc9
1 changed files with 2 additions and 2 deletions

View File

@ -42,10 +42,10 @@ def read_gguf(path):
pos = f.tell()
align = 32
data_start = (pos + align - 1) & ~(align - 1)
print(f"\nFile: {path}")
print(f"Tensors: {n_tensors}")
for name, dims, dtype, offset in tensors[:10]: # first 10
if dtype != 0: # only F32 (type 0)
print(f" {name}: dims={dims} type={dtype} (non-F32, skipping norm)")