No description
  • C++ 65.2%
  • TeX 32.8%
  • CMake 2%
Find a file
2023-10-29 02:18:12 +01:00
report added reasons for current implementation 2023-08-29 17:26:23 +02:00
tests Compleated Code 2023-08-24 19:46:27 +02:00
.gitattributes Update .gitattributes 2023-10-29 02:18:12 +01:00
.gitignore Changed for loop in stencil.hpp to double loop, changed main script structure 2023-08-24 21:19:23 +02:00
CMakeLists.txt Compleated Code 2023-08-24 19:46:27 +02:00
compile_commands.json Compleated Code 2023-08-24 19:46:27 +02:00
main.cpp fixed memory leak on () operator for stencil class 2023-08-29 17:25:54 +02:00
reader.hpp Compleated Code 2023-08-24 19:46:27 +02:00
README.md Added timing of reading and writing 2023-08-25 16:43:58 +02:00
stencil.hpp fixed memory leak on () operator for stencil class 2023-08-29 17:25:54 +02:00
task.hpp Compleated Code 2023-08-24 19:46:27 +02:00
threadPool.cpp Compleated Code 2023-08-24 19:46:27 +02:00
threadPool.hpp Compleated Code 2023-08-24 19:46:27 +02:00
timer.cpp Compleated Code 2023-08-24 19:46:27 +02:00
timer.hpp Compleated Code 2023-08-24 19:46:27 +02:00
writer.hpp Compleated Code 2023-08-24 19:46:27 +02:00

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