Fix gguf-convert-endian script (#4037)

* Fix gguf-convert-endian script

* Bump version and update description
This commit is contained in:
M. Yusuf Sarıgöz 2023-11-11 18:35:31 +03:00 committed by GitHub
parent d96ca7ded7
commit e86fc56f75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -1,7 +1,7 @@
[tool.poetry]
name = "gguf"
version = "0.5.0"
description = "Write ML models in GGUF for GGML"
version = "0.5.1"
description = "Read and write ML models in GGUF for GGML"
authors = ["GGML <ggml@ggml.ai>"]
packages = [
{include = "gguf"},

View file

@ -28,8 +28,7 @@ def convert_byteorder(reader: gguf.GGUFReader, args: argparse.Namespace) -> None
file_endian = swapped_endian
else:
file_endian = host_endian
if args.order == "native":
order = host_endian
order = host_endian if args.order == "native" else args.order
print(f"* Host is {host_endian.upper()} endian, GGUF file seems to be {file_endian.upper()} endian")
if file_endian == order:
print(f"* File is already {order.upper()} endian. Nothing to do.")