documented all functions from GPU initialization section
authorAnatoly Baksheev <no@email>
Fri, 14 Jan 2011 17:52:40 +0000 (17:52 +0000)
committerAnatoly Baksheev <no@email>
Fri, 14 Jan 2011 17:52:40 +0000 (17:52 +0000)
doc/gpu.tex
doc/gpu_initialization.tex [new file with mode: 0644]
doc/gpu_introduction.tex [new file with mode: 0644]
doc/opencvref_body.tex

index f531218..7e334a1 100644 (file)
@@ -1,27 +1,3 @@
-\ifCpp
-
-
-\section{Initalization and Info}
-
-
-\cvCppFunc{gpu::hasNativeDoubleSupport}
-Returns true if current GPU has native double support, false otherwise.
-
-\cvdefCpp{bool hasNativeDoubleSupport(int device);}
-\begin{description}
-\cvarg{device}{GPU identity. Can be obtained via \cvCppCross{gpu::getDevice}.}
-\end{description}
-
-
-\cvCppFunc{gpu::hasAtomicsSupport}
-Returns true if current GPU has atomics support, false otherwise.
-
-\cvdefCpp{bool hasAtomicsSupport(int device);}
-\begin{description}
-\cvarg{device}{GPU identity. Can be obtained via \cvCppCross{gpu::getDevice}.}
-\end{description}
-
-
 \section{Data Structures}
 
 
@@ -821,5 +797,3 @@ Returns block descriptors computed for the whole image.
     \cvarg{DESCR\_FORMAT\_COL\_BY\_COL}{Column-major order.}
 \end{description}}
 \end{description}
-
-\fi
\ No newline at end of file
diff --git a/doc/gpu_initialization.tex b/doc/gpu_initialization.tex
new file mode 100644 (file)
index 0000000..9c12163
--- /dev/null
@@ -0,0 +1,69 @@
+\section{Initalization and Information}
+
+
+\cvCppFunc{gpu::getCudaEnabledDeviceCount}
+Returns number of CUDA-enabled devices installed. It is to be used before any other GPU funtions calls. If OpenCV is compiled without GPU support this function returns 0. 
+
+\cvdefCpp{int getCudaEnabledDeviceCount();}
+
+
+\cvCppFunc{gpu::setDevice}
+Sets device and initializes it for current thread. If this call is omitted, default device will be initialized.
+
+\cvdefCpp{void setDevice(int device);}
+\begin{description}
+\cvarg{device}{index of GPU device in system starting with 0.}
+\end{description}
+
+
+\cvCppFunc{gpu::getDevice}
+Returns current device index, which was set by \cvCppCross{gpu::getDevice} of initialized by default.
+
+\cvdefCpp{int getDevice();}
+
+
+\cvCppFunc{gpu::getComputeCapability}
+Returns compute capability version for given device.
+
+\cvdefCpp{void getComputeCapability(int device, int\& major, int\& minor);}
+\begin{description}
+\cvarg{device}{GPU index. Can be obtained via \cvCppCross{gpu::getDevice}.}
+\cvarg{major}{Major CC version.}
+\cvarg{minor}{Minor CC version.}
+\end{description}
+
+\cvCppFunc{gpu::getNumberOfSMs}
+Returns number of Streaming Multiprocessors for given device.
+
+\cvdefCpp{int getNumberOfSMs(int device);}
+\begin{description}
+\cvarg{device}{GPU index. Can be obtained via \cvCppCross{gpu::getDevice}.}
+\end{description}
+
+
+\cvCppFunc{gpu::getGpuMemInfo}
+Returns free and total memory for current device.
+
+\cvdefCpp{void getGpuMemInfo(size\_t\& free, size\_t\& total);}
+\begin{description}
+\cvarg{free}{Reference to free GPU memory counter.}
+\cvarg{total}{Reference to total GPU memory counter.}
+\end{description}
+
+
+\cvCppFunc{gpu::hasNativeDoubleSupport}
+Returns true if current GPU has native double support, false otherwise.
+
+\cvdefCpp{bool hasNativeDoubleSupport(int device);}
+\begin{description}
+\cvarg{device}{GPU index. Can be obtained via \cvCppCross{gpu::getDevice}.}
+\end{description}
+
+
+\cvCppFunc{gpu::hasAtomicsSupport}
+Returns true if current GPU has atomics support, false otherwise.
+
+\cvdefCpp{bool hasAtomicsSupport(int device);}
+\begin{description}
+\cvarg{device}{GPU index. Can be obtained via \cvCppCross{gpu::getDevice}.}
+\end{description} 
\ No newline at end of file
diff --git a/doc/gpu_introduction.tex b/doc/gpu_introduction.tex
new file mode 100644 (file)
index 0000000..09ea149
--- /dev/null
@@ -0,0 +1,3 @@
+\r
+\setction{ABC}\r
+GPU INTRODUTION
\ No newline at end of file
index 0aff9ad..f4da822 100644 (file)
 \ifCpp
 \chapter{gpu. GPU-based Functionality}
 \renewcommand{\curModule}{gpu}
+%\input{gpu_introduction}
+\input{gpu_initialization}
 \input{gpu}
+%\input{gpu_datastructures}
+%\input{gpu_matrixoperations}
+%\input{gpu_imageproc}
+%\input{gpu_matrixreductions}
+%\input{gpu_objectdetection}
 \input{gpu_features2d}
 \input{gpu_image_filtering}
 \fi