File size: 623 Bytes
ac082b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import os
files = [
'/tmp/littlefig_benchmark_benchmark_gpu.py',
'/tmp/littlefig_cogmembench_runner.py',
'/tmp/littlefig_cogmembench_scorer.py',
'/tmp/littlefig_src_little_fig_engine_memory_fabric.py',
'/tmp/littlefig_src_little_fig_engine_model.py',
'/tmp/littlefig_pyproject.toml',
'/tmp/Lila_src_main.py',
'/tmp/Lila_README.md',
'/tmp/embers-diaries_pyproject.toml',
]
for path in files:
print(f'\n{"="*60}')
print(f'FILE: {path}')
print('='*60)
if os.path.exists(path):
with open(path) as f:
print(f.read())
else:
print('NOT FOUND')
|