Image sharpening exercise
Running a simple parallel program
1
Image sharpening exercise Running a simple parallel program 1 - - PowerPoint PPT Presentation
Image sharpening exercise Running a simple parallel program 1 Reusing this material This work is licensed under a Creative Commons Attribution- NonCommercial-ShareAlike 4.0 International License.
Running a simple parallel program
1
This work is licensed under a Creative Commons Attribution- NonCommercial-ShareAlike 4.0 International License. http://creativecommons.org/licenses/by-nc-sa/4.0/deed.en_US
This means you are free to copy and redistribute the material and adapt and build on the material under the following terms: You must give appropriate credit, provide a link to the license and indicate if changes were made. If you adapt or build on the material you must distribute your work under the same license as the original. Note that this presentation contains images owned by others. Please seek their permission before reusing these images.
2
Perkins, Ashley Walker and Erik Wolfart, Department of Artificial Intelligence, University of Edinburgh (1994)
3
4
Algorithm and implementation
5
edges fuzzy sharp
6
7
𝑓𝑒𝑓(𝑗, 𝑘) =
𝑙=−𝑒,𝑒 𝑚=−𝑒,𝑒
𝑗𝑛𝑏𝑓(𝑗 + 𝑙, 𝑘 + 𝑚) × 𝑔𝑗𝑚𝑢𝑓𝑠(𝑙, 𝑚)
8
How the code takes advantage of multiple processors
9
10
1 2 3 4 1 2 3 4 1 2 3
11
12
Extra stuff to help you with the practical
13
#PBS -N sharpen #PBS -l select=1 # now stuff that actually executes … aprun -n 4 ./sharpen
how many cores to run on – remember 24 cores per node! parallel job launcher how many nodes you want program to run name for PBS batch job
14
#PBS -N sharpen #PBS -l place=excl #PBS -l select=1:ncpus=72 # now stuff that actually executes … mpiexec_mpt -n 4 -ppn 4 ./sharpen
how many cores to run on – remember 36 cores per node! parallel job launcher how many nodes you want program to run name for PBS batch job exclusive access – no
number of Processes Per Node
15
16