An open API service indexing awesome lists of open source software.

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

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
```