]> AND Private Git Repository - book_gpu.git/blob - BookGPU/Chapters/chapter3/ch3.aux
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
0f932fdccbcc4dfa0ef957ff2c074c8a0e475d3f
[book_gpu.git] / BookGPU / Chapters / chapter3 / ch3.aux
1 \relax 
2 \@writefile{toc}{\author{Gilles Perrot}{}}
3 \@writefile{loa}{\addvspace {10\p@ }}
4 \@writefile{toc}{\contentsline {chapter}{\numberline {3}Setting up the environnement.}{25}}
5 \@writefile{lof}{\addvspace {10\p@ }}
6 \@writefile{lot}{\addvspace {10\p@ }}
7 \newlabel{algo:memcopy:H2D}{{7}{25}}
8 \newlabel{algo:memcopy:kernel}{{8}{25}}
9 \newlabel{algo:memcopy:D2H}{{9}{25}}
10 \@writefile{loa}{\contentsline {algocf}{\numberline {1}{\ignorespaces Global memory management on CPU and GPU sides.\relax }}{25}}
11 \newlabel{algo:memcopy}{{1}{25}}
12 \@writefile{toc}{\contentsline {section}{\numberline {3.1}Data transfers, memory management.}{26}}
13 \newlabel{lst:main1}{{3.1}{27}}
14 \@writefile{lol}{\contentsline {lstlisting}{\numberline {3.1}Generic main.cu file used to launch CUDA kernels}{27}}
15 \newlabel{lst:fkern1}{{3.2}{27}}
16 \@writefile{lol}{\contentsline {lstlisting}{\numberline {3.2}fast\_kernels.cu file featuring one kernel skeleton}{27}}
17 \newlabel{lst:mkfile}{{3.3}{28}}
18 \@writefile{lol}{\contentsline {lstlisting}{\numberline {3.3}Generic Makefile based on those provided by NV SDK}{28}}
19 \@writefile{toc}{\contentsline {section}{\numberline {3.2}Performance measurements}{28}}
20 \newlabel{lst:chronos}{{3.4}{28}}
21 \@writefile{lol}{\contentsline {lstlisting}{\numberline {3.4}Time measurement technique using cutil functions}{28}}
22 \@writefile{toc}{\author{Gilles Perrot}{}}
23 \@writefile{loa}{\addvspace {10\p@ }}
24 \@writefile{toc}{\contentsline {chapter}{\numberline {4}Implementing a fast median filter}{31}}
25 \@writefile{lof}{\addvspace {10\p@ }}
26 \@writefile{lot}{\addvspace {10\p@ }}
27 \@writefile{toc}{\contentsline {section}{\numberline {4.1}Introduction}{31}}
28 \@writefile{toc}{\contentsline {section}{\numberline {4.2}Median filtering}{32}}
29 \@writefile{toc}{\contentsline {subsection}{\numberline {4.2.1}Basic principles}{32}}
30 \@writefile{toc}{\contentsline {subsection}{\numberline {4.2.2}A naive implementation}{32}}
31 \newlabel{img:sap_example_ref}{{4.1(a)}{33}}
32 \newlabel{sub@img:sap_example_ref}{{(a)}{33}}
33 \newlabel{img:sap_example_med3}{{4.1(b)}{33}}
34 \newlabel{sub@img:sap_example_med3}{{(b)}{33}}
35 \newlabel{img:sap_example_med5}{{4.1(c)}{33}}
36 \newlabel{sub@img:sap_example_med5}{{(c)}{33}}
37 \newlabel{img:sap_example_med3_it2}{{4.1(d)}{33}}
38 \newlabel{sub@img:sap_example_med3_it2}{{(d)}{33}}
39 \@writefile{lof}{\contentsline {figure}{\numberline {4.1}{\ignorespaces Example of median filtering, applied to salt \& pepper noise reduction.\relax }}{33}}
40 \@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Airplane image, corrupted by salt and pepper noise of density 0.25}}}{33}}
41 \@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Image denoised by a $3\times 3$ median filter}}}{33}}
42 \@writefile{lof}{\contentsline {subfigure}{\numberline{(c)}{\ignorespaces {Image denoised by a $5\times 5$ median filter}}}{33}}
43 \@writefile{lof}{\contentsline {subfigure}{\numberline{(d)}{\ignorespaces {Image denoised by 2 iterations of a $3\times 3$ median filter}}}{33}}
44 \newlabel{fig:sap_examples}{{4.1}{33}}
45 \newlabel{lst:medianGeneric}{{4.1}{34}}
46 \@writefile{lol}{\contentsline {lstlisting}{\numberline {4.1}Generic CUDA kernel achieving median filtering}{34}}
47 \@writefile{lof}{\contentsline {figure}{\numberline {4.2}{\ignorespaces Example of 5x5 median filtering\relax }}{35}}
48 \newlabel{fig:median_1}{{4.2}{35}}
49 \newlabel{algoMedianGeneric}{{2}{35}}
50 \newlabel{algoMedianGeneric:memcpyH2D}{{1}{35}}
51 \newlabel{algoMedianGeneric:cptstart}{{3}{35}}
52 \newlabel{algoMedianGeneric:cptend}{{5}{35}}
53 \newlabel{algoMedianGeneric:memcpyD2H}{{7}{35}}
54 \@writefile{loa}{\contentsline {algocf}{\numberline {2}{\ignorespaces generic n$\times $n median filter\relax }}{35}}
55 \@writefile{toc}{\contentsline {section}{\numberline {4.3}NVidia GPU tuning recipes}{35}}
56 \@writefile{lof}{\contentsline {figure}{\numberline {4.3}{\ignorespaces Illustration of window overlapping in 5x5 median filtering\relax }}{36}}
57 \newlabel{fig:median_overlap}{{4.3}{36}}
58 \@writefile{lot}{\contentsline {table}{\numberline {4.1}{\ignorespaces Performance results of \texttt  {kernel medianR}. \relax }}{36}}
59 \newlabel{tab:medianHisto1}{{4.1}{36}}
60 \@writefile{toc}{\contentsline {section}{\numberline {4.4}A 3$\times $3 median filter: using registers }{37}}
61 \@writefile{toc}{\contentsline {subsection}{\numberline {4.4.1}The simplest way}{37}}
62 \newlabel{lst:kernelMedian3RegTri9}{{4.2}{38}}
63 \@writefile{lol}{\contentsline {lstlisting}{\numberline {4.2}3$\times $3 median filter kernel using one register per neighborhood pixel and bubble sort}{38}}
64 \@writefile{toc}{\contentsline {subsection}{\numberline {4.4.2}Further optimization}{38}}
65 \@writefile{lof}{\contentsline {figure}{\numberline {4.4}{\ignorespaces Comparison of pixel throughputs on GPU C2070 and CPU for generic median, 3$\times $3 median register-only and \textit  {libJacket}.\relax }}{39}}
66 \newlabel{fig:compMedians1}{{4.4}{39}}
67 \@writefile{lof}{\contentsline {figure}{\numberline {4.5}{\ignorespaces Forgetful selection with the minimal element register count. Illustration for 3$\times $3 pixel window represented in a row and supposed sorted.\relax }}{39}}
68 \newlabel{fig:forgetful_selection}{{4.5}{39}}
69 \@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.2.1}Reducing register count }{39}}
70 \@writefile{lof}{\contentsline {figure}{\numberline {4.6}{\ignorespaces Determination of the Median value by the forgetful selection process, applied to a $3\times 3$ neighborhood window.\relax }}{41}}
71 \newlabel{fig:forgetful3}{{4.6}{41}}
72 \newlabel{lst:medianForget1pix3}{{4.3}{41}}
73 \@writefile{lol}{\contentsline {lstlisting}{\numberline {4.3}3$\times $3 median filter kernel using the minimum register count of 6 to find the median value by forgetful selection method. The optimal thread block size is 128 on GTX280 and 256 on C2070.}{41}}
74 \@writefile{toc}{\contentsline {subsubsection}{\numberline {4.4.2.2}More data output per thread}{42}}
75 \@writefile{lof}{\contentsline {figure}{\numberline {4.7}{\ignorespaces Illustration of how window overlapping is used to combine 2 pixel selections in a 3$\times $3 median kernel.\relax }}{42}}
76 \newlabel{fig:median3_overlap}{{4.7}{42}}
77 \newlabel{lst:medianForget2pix3}{{4.4}{43}}
78 \@writefile{lol}{\contentsline {lstlisting}{\numberline {4.4}3$\times $3 median filter kernel processing 2 output pixel values per thread using combined forgetful selection.}{43}}
79 \@writefile{toc}{\contentsline {section}{\numberline {4.5}A 5$\times $5 and more median filter }{43}}
80 \@writefile{lof}{\contentsline {figure}{\numberline {4.8}{\ignorespaces Comparison of pixel throughput on GPU C2070 for the different 3$\times $3 median kernels.\relax }}{44}}
81 \newlabel{fig:compMedians2}{{4.8}{44}}
82 \newlabel{sec:median5}{{4.5.1}{44}}
83 \@writefile{toc}{\contentsline {subsection}{\numberline {4.5.1}A register-only 5$\times $5 median filter }{44}}
84 \@writefile{lof}{\contentsline {figure}{\numberline {4.9}{\ignorespaces Reducing register count in a 5$\times $5 register-only median kernel outputting 2 pixels simultaneously.}}{45}}
85 \newlabel{fig:median5overlap}{{4.9}{45}}
86 \@writefile{lof}{\contentsline {figure}{\numberline {4.10}{\ignorespaces First iteration of the $5\times 5$ selection process, with $k_{25}=14$, which shows how Instruction Level Parallelism is maximized by the use of an incomplete sorting network.}}{45}}
87 \newlabel{fig:median5overlap}{{4.10}{45}}
88 \newlabel{lst:medianForget2pix5}{{4.5}{46}}
89 \@writefile{lol}{\contentsline {lstlisting}{\numberline {4.5}kernel 5$\times $5 median filter processing 2 output pixel values per thread by a combined forgetfull selection.}{46}}
90 \@writefile{lot}{\contentsline {table}{\numberline {4.2}{\ignorespaces Performance of various 5$\times $5 median kernel implementations, applied on 4096$\times $4096 pixel image with C2070 GPU card.\relax }}{47}}
91 \newlabel{tab:median5comp}{{4.2}{47}}
92 \@writefile{toc}{\contentsline {subsection}{\numberline {4.5.2}Fast approximated n$\times $n median filter }{47}}
93 \@writefile{lot}{\contentsline {table}{\numberline {4.3}{\ignorespaces Measured performance of one generic pseudo-separable median kernel applied to 4096$\times $4096 pixel image with various window sizes.\relax }}{48}}
94 \newlabel{tab:medianSeparable}{{4.3}{48}}
95 \newlabel{img:sap_example_ref}{{4.11(a)}{49}}
96 \newlabel{sub@img:sap_example_ref}{{(a)}{49}}
97 \newlabel{img:sap_example_sep_med3}{{4.11(b)}{49}}
98 \newlabel{sub@img:sap_example_sep_med3}{{(b)}{49}}
99 \newlabel{img:sap_example_sep_med5}{{4.11(c)}{49}}
100 \newlabel{sub@img:sap_example_sep_med5}{{(c)}{49}}
101 \newlabel{img:sap_example_sep_med3_it2}{{4.11(d)}{49}}
102 \newlabel{sub@img:sap_example_sep_med3_it2}{{(d)}{49}}
103 \@writefile{lof}{\contentsline {figure}{\numberline {4.11}{\ignorespaces Example of separable median filtering (smoother), applied to salt \& pepper noise reduction.\relax }}{49}}
104 \@writefile{lof}{\contentsline {subfigure}{\numberline{(a)}{\ignorespaces {Airplane image, corrupted with by salt and pepper noise of density 0.25}}}{49}}
105 \@writefile{lof}{\contentsline {subfigure}{\numberline{(b)}{\ignorespaces {Image denoised by a $3\times 3$ separable smoother}}}{49}}
106 \@writefile{lof}{\contentsline {subfigure}{\numberline{(c)}{\ignorespaces {Image denoised by a $5\times 5$ separable smoother}}}{49}}
107 \@writefile{lof}{\contentsline {subfigure}{\numberline{(d)}{\ignorespaces {Image background estimation by a $55\times 55$ separable smoother}}}{49}}
108 \newlabel{fig:sap_examples2}{{4.11}{49}}
109 \newlabel{lst:medianSeparable}{{4.6}{50}}
110 \@writefile{lol}{\contentsline {lstlisting}{\numberline {4.6}generic pseudo median kernel.}{50}}
111 \@writefile{toc}{\contentsline {section}{Bibliography}{51}}
112 \@setckpt{Chapters/chapter3/ch3}{
113 \setcounter{page}{52}
114 \setcounter{equation}{0}
115 \setcounter{enumi}{3}
116 \setcounter{enumii}{0}
117 \setcounter{enumiii}{0}
118 \setcounter{enumiv}{10}
119 \setcounter{footnote}{0}
120 \setcounter{mpfootnote}{0}
121 \setcounter{part}{2}
122 \setcounter{chapter}{4}
123 \setcounter{section}{5}
124 \setcounter{subsection}{2}
125 \setcounter{subsubsection}{0}
126 \setcounter{paragraph}{0}
127 \setcounter{subparagraph}{0}
128 \setcounter{figure}{11}
129 \setcounter{table}{3}
130 \setcounter{numauthors}{0}
131 \setcounter{parentequation}{0}
132 \setcounter{subfigure}{0}
133 \setcounter{lofdepth}{1}
134 \setcounter{subtable}{0}
135 \setcounter{lotdepth}{1}
136 \setcounter{lstnumber}{70}
137 \setcounter{ContinuedFloat}{0}
138 \setcounter{AlgoLine}{7}
139 \setcounter{algocfline}{2}
140 \setcounter{algocfproc}{2}
141 \setcounter{algocf}{2}
142 \setcounter{nprt@mantissa@digitsbefore}{0}
143 \setcounter{nprt@mantissa@digitsafter}{0}
144 \setcounter{nprt@exponent@digitsbefore}{0}
145 \setcounter{nprt@exponent@digitsafter}{0}
146 \setcounter{nprt@digitsfirstblock}{0}
147 \setcounter{nprt@blockcnt}{0}
148 \setcounter{nprt@cntprint}{0}
149 \setcounter{proposition}{0}
150 \setcounter{theorem}{0}
151 \setcounter{exercise}{0}
152 \setcounter{example}{0}
153 \setcounter{definition}{0}
154 \setcounter{proof}{0}
155 \setcounter{lstlisting}{6}
156 }