-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
69 additions
and
8 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import argparse | ||
|
||
|
||
import os | ||
import sys | ||
from olah.cache.olah_cache import OlahCache | ||
|
||
def get_size_human(size: int) -> str: | ||
if size > 1024 * 1024 * 1024: | ||
return f"{int(size / (1024 * 1024 * 1024)):.4f}GB" | ||
elif size > 1024 * 1024: | ||
return f"{int(size / (1024 * 1024)):.4f}MB" | ||
elif size > 1024: | ||
return f"{int(size / (1024)):.4f}KB" | ||
else: | ||
return f"{size:.4f}B" | ||
|
||
def insert_newlines(input_str, every=10): | ||
return '\n'.join(input_str[i:i+every] for i in range(0, len(input_str), every)) | ||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser(description="Olah Cache Visualization Tool.") | ||
parser.add_argument("--file", "-f", type=str, required=True, help="The path of Olah cache file") | ||
parser.add_argument("--export", "-e", type=str, default="", help="Export the cached file if all blocks are cached") | ||
args = parser.parse_args() | ||
print(args) | ||
|
||
with open(args.file, "rb") as f: | ||
f.seek(0, os.SEEK_END) | ||
bin_size = f.tell() | ||
|
||
try: | ||
cache = OlahCache(args.file) | ||
except Exception as e: | ||
print(e) | ||
sys.exit(1) | ||
print(f"File: {args.file}") | ||
print(f"Olah Cache Version: {cache.header.version}") | ||
print(f"File Size: {get_size_human(cache.header.file_size)}") | ||
print(f"Cache Total Size: {get_size_human(bin_size)}") | ||
print(f"Block Size: {cache.header.block_size}") | ||
print(f"Block Number: {cache.header.block_number}") | ||
print(f"Cache Status: ") | ||
cache_status = cache.header.block_mask.__str__()[:cache.header._block_number] | ||
print(insert_newlines(cache_status, every=50)) | ||
|
||
if args.export != "": | ||
if all([c == "1" for c in cache_status]): | ||
with open(args.file, "rb") as f: | ||
f.seek(cache._get_header_size(), os.SEEK_SET) | ||
with open(args.export, "wb") as fout: | ||
fout.write(f.read()) | ||
else: | ||
print("Some blocks are not cached, so the export is skipped.") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters