No description
- C++ 65.2%
- TeX 32.8%
- CMake 2%
| report | ||
| tests | ||
| .gitattributes | ||
| .gitignore | ||
| CMakeLists.txt | ||
| compile_commands.json | ||
| main.cpp | ||
| reader.hpp | ||
| README.md | ||
| stencil.hpp | ||
| task.hpp | ||
| threadPool.cpp | ||
| threadPool.hpp | ||
| timer.cpp | ||
| timer.hpp | ||
| writer.hpp | ||
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