We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce619fc commit 820f798Copy full SHA for 820f798
gempy/modules/serialization/save_load.py
@@ -71,6 +71,8 @@ def model_to_binary(model: GeoModel) -> bytes:
71
compressed_binary_grid = zlib.compress(model.grid.grid_binary, level=6)
72
73
import hashlib
74
+ print("len raw bytes:", len(model.grid.grid_binary))
75
+
76
print("raw bytes hash:", hashlib.sha256(model.grid.grid_binary).hexdigest())
77
print("compressed length:", len(compressed_binary_grid))
78
print("zlib version:", zlib.ZLIB_VERSION)
0 commit comments