Added timing of reading and writing

This commit is contained in:
elvis
2023-08-25 16:43:58 +02:00
parent 36eb1c7caf
commit 49180c6b8a
2 changed files with 65 additions and 0 deletions

View File

@ -1,2 +1,21 @@
# StencilParallelPattern
To compile with debug symbols:
```
cmake -DCMAKE_BUILD_TYPE=Debug -S . -B build/
cd build/
make
```
To compile with optimizations:
```
cmake -DCMAKE_BUILD_TYPE=Release -S . -B build/
cd build/
make
```