https://github.com/coderefinery/ttt4hpc-io-examples
Examples for disk input and output operations
https://github.com/coderefinery/ttt4hpc-io-examples
Last synced: 5 months ago
JSON representation
Examples for disk input and output operations
- Host: GitHub
- URL: https://github.com/coderefinery/ttt4hpc-io-examples
- Owner: coderefinery
- License: mit
- Created: 2024-04-03T11:57:14.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T12:32:14.000Z (about 2 years ago)
- Last Synced: 2025-09-10T04:46:23.058Z (9 months ago)
- Language: Python
- Size: 30.3 KB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ttt4hpc-io-examples
Examples for disk input and output operations
1. Generate files
``` bash
python generate_files.py
```
2. Create an archive
``` bash
create_archive.py
```
3. Test reading individual files
``` bash
python aggregate_files.py
```
4. Test reading a single file into memory first
``` bash
python aggregate_archive.py
```
5. Test reading random access from files
``` bash
python random_access.py
```
6. Test reading random access from archive out of memory
``` bash
python random_access_archive.py
```