mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-25 19:04:35 +00:00
Fix gguf-convert-endian script (#4037)
* Fix gguf-convert-endian script * Bump version and update description
This commit is contained in:
parent
d96ca7ded7
commit
e86fc56f75
@ -1,7 +1,7 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "gguf"
|
name = "gguf"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
description = "Write ML models in GGUF for GGML"
|
description = "Read and write ML models in GGUF for GGML"
|
||||||
authors = ["GGML <ggml@ggml.ai>"]
|
authors = ["GGML <ggml@ggml.ai>"]
|
||||||
packages = [
|
packages = [
|
||||||
{include = "gguf"},
|
{include = "gguf"},
|
||||||
|
@ -28,8 +28,7 @@ def convert_byteorder(reader: gguf.GGUFReader, args: argparse.Namespace) -> None
|
|||||||
file_endian = swapped_endian
|
file_endian = swapped_endian
|
||||||
else:
|
else:
|
||||||
file_endian = host_endian
|
file_endian = host_endian
|
||||||
if args.order == "native":
|
order = host_endian if args.order == "native" else args.order
|
||||||
order = host_endian
|
|
||||||
print(f"* Host is {host_endian.upper()} endian, GGUF file seems to be {file_endian.upper()} endian")
|
print(f"* Host is {host_endian.upper()} endian, GGUF file seems to be {file_endian.upper()} endian")
|
||||||
if file_endian == order:
|
if file_endian == order:
|
||||||
print(f"* File is already {order.upper()} endian. Nothing to do.")
|
print(f"* File is already {order.upper()} endian. Nothing to do.")
|
||||||
|
Loading…
Reference in New Issue
Block a user