OpenCV
4.9.0
Open Source Computer Vision
|
#include <opencv2/core/ocl.hpp>
Public Member Functions | |
Kernel () CV_NOEXCEPT | |
Kernel (const char *kname, const Program &prog) | |
Kernel (const char *kname, const ProgramSource &prog, const String &buildopts=String(), String *errmsg=0) | |
Kernel (const Kernel &k) | |
Kernel (Kernel &&k) CV_NOEXCEPT | |
~Kernel () | |
template<typename... _Tps> | |
Kernel & | args (const _Tps &... kernel_args) |
Setup OpenCL Kernel arguments. Avoid direct using of set(i, ...) methods. More... | |
bool | compileWorkGroupSize (size_t wsz[]) const |
bool | create (const char *kname, const Program &prog) |
bool | create (const char *kname, const ProgramSource &prog, const String &buildopts, String *errmsg=0) |
bool | empty () const |
size_t | localMemSize () const |
Kernel & | operator= (const Kernel &k) |
Kernel & | operator= (Kernel &&k) CV_NOEXCEPT |
size_t | preferedWorkGroupSizeMultiple () const |
void * | ptr () const |
bool | run (int dims, size_t globalsize[], size_t localsize[], bool sync, const Queue &q=Queue()) |
Run the OpenCL kernel (globalsize value may be adjusted) More... | |
bool | run_ (int dims, size_t globalsize[], size_t localsize[], bool sync, const Queue &q=Queue()) |
Run the OpenCL kernel. More... | |
int64 | runProfiling (int dims, size_t globalsize[], size_t localsize[], const Queue &q=Queue()) |
Similar to synchronized run_() call with returning of kernel execution time. More... | |
bool | runTask (bool sync, const Queue &q=Queue()) |
int | set (int i, const void *value, size_t sz) |
int | set (int i, const Image2D &image2D) |
int | set (int i, const UMat &m) |
int | set (int i, const KernelArg &arg) |
template<typename _Tp > | |
int | set (int i, const _Tp &value) |
size_t | workGroupSize () const |
Protected Member Functions | |
template<typename _Tp0 > | |
int | set_args_ (int i, const _Tp0 &a0) |
template<typename _Tp0 , typename... _Tps> | |
int | set_args_ (int i, const _Tp0 &a0, const _Tps &... rest_args) |
Protected Attributes | |
Impl * | p |
cv::ocl::Kernel::Kernel | ( | ) |
cv::ocl::Kernel::Kernel | ( | const char * | kname, |
const Program & | prog | ||
) |
cv::ocl::Kernel::Kernel | ( | const char * | kname, |
const ProgramSource & | prog, | ||
const String & | buildopts = String() , |
||
String * | errmsg = 0 |
||
) |
cv::ocl::Kernel::~Kernel | ( | ) |
cv::ocl::Kernel::Kernel | ( | const Kernel & | k | ) |
cv::ocl::Kernel::Kernel | ( | Kernel && | k | ) |
|
inline |
Setup OpenCL Kernel arguments. Avoid direct using of set(i, ...) methods.
bool cv::ocl::Kernel::compileWorkGroupSize | ( | size_t | wsz[] | ) | const |
bool cv::ocl::Kernel::create | ( | const char * | kname, |
const Program & | prog | ||
) |
bool cv::ocl::Kernel::create | ( | const char * | kname, |
const ProgramSource & | prog, | ||
const String & | buildopts, | ||
String * | errmsg = 0 |
||
) |
bool cv::ocl::Kernel::empty | ( | ) | const |
size_t cv::ocl::Kernel::localMemSize | ( | ) | const |
size_t cv::ocl::Kernel::preferedWorkGroupSizeMultiple | ( | ) | const |
void* cv::ocl::Kernel::ptr | ( | ) | const |
bool cv::ocl::Kernel::run | ( | int | dims, |
size_t | globalsize[], | ||
size_t | localsize[], | ||
bool | sync, | ||
const Queue & | q = Queue() |
||
) |
Run the OpenCL kernel (globalsize value may be adjusted)
dims | the work problem dimensions. It is the length of globalsize and localsize. It can be either 1, 2 or 3. |
globalsize | work items for each dimension. It is not the final globalsize passed to OpenCL. Each dimension will be adjusted to the nearest integer divisible by the corresponding value in localsize. If localsize is NULL, it will still be adjusted depending on dims. The adjusted values are greater than or equal to the original values. |
localsize | work-group size for each dimension. |
sync | specify whether to wait for OpenCL computation to finish before return. |
q | command queue |
bool cv::ocl::Kernel::run_ | ( | int | dims, |
size_t | globalsize[], | ||
size_t | localsize[], | ||
bool | sync, | ||
const Queue & | q = Queue() |
||
) |
Run the OpenCL kernel.
dims | the work problem dimensions. It is the length of globalsize and localsize. It can be either 1, 2 or 3. |
globalsize | work items for each dimension. This value is passed to OpenCL without changes. |
localsize | work-group size for each dimension. |
sync | specify whether to wait for OpenCL computation to finish before return. |
q | command queue |
int64 cv::ocl::Kernel::runProfiling | ( | int | dims, |
size_t | globalsize[], | ||
size_t | localsize[], | ||
const Queue & | q = Queue() |
||
) |
Similar to synchronized run_() call with returning of kernel execution time.
Separate OpenCL command queue may be used (with CL_QUEUE_PROFILING_ENABLE)
int cv::ocl::Kernel::set | ( | int | i, |
const void * | value, | ||
size_t | sz | ||
) |
int cv::ocl::Kernel::set | ( | int | i, |
const Image2D & | image2D | ||
) |
int cv::ocl::Kernel::set | ( | int | i, |
const UMat & | m | ||
) |
int cv::ocl::Kernel::set | ( | int | i, |
const KernelArg & | arg | ||
) |
|
inline |
|
inlineprotected |
|
inlineprotected |
size_t cv::ocl::Kernel::workGroupSize | ( | ) | const |
|
protected |