01_tutorial/- Basic usage of OpenMP02_syntax/- About OpenMP syntax03_scheduling/- Types of scheduling and how to use them04_task/- Task-based parallelization05_attribution/- Variable attributes06_thread/- Controlling the number of threads07_appendix/- Additional materials and examplesslide/- Slides
In each directory, or in its parent directory, run the following command:
makeTested with gcc15.
After building, execute the generated binary file:
./[executable_name]If you want to specify the number of threads:
OMP_NUM_THREADS=8 ./[executable_name]- Slide materials are in the
slide/directory. - Each directory contains sample code related to its topic.
- Additional examples and materials can be found in the
07_appendix/directory.