GuidedFilter  1.2.0
 Hosted by GitHub
Public Types | Public Member Functions | Public Attributes | List of all members
cl_algo::GF::Math::Pown Class Reference

Interface class for the pown_ kernel. More...

#include <math.hpp>

Public Types

enum  Memory : uint8_t { Memory::H_IN, Memory::H_OUT, Memory::D_IN, Memory::D_OUT }
 Enumerates the memory objects handled by the class. More...
 

Public Member Functions

 Pown (clutils::CLEnv &_env, clutils::CLEnvInfo< 1 > _info)
 Configures an OpenCL environment as specified by _info. More...
 
cl::Memory & get (Pown::Memory mem)
 Returns a reference to an internal memory object used by pown_. More...
 
void init (unsigned int _width, unsigned int _height, int _n, Staging _staging=Staging::IO)
 Configures kernel execution parameters. More...
 
void write (Pown::Memory mem=Pown::Memory::D_IN, void *ptr=nullptr, bool block=CL_FALSE, const std::vector< cl::Event > *events=nullptr, cl::Event *event=nullptr)
 Performs a data transfer to a device buffer. More...
 
void * read (Pown::Memory mem=Pown::Memory::H_OUT, bool block=CL_TRUE, const std::vector< cl::Event > *events=nullptr, cl::Event *event=nullptr)
 Performs a data transfer to a staging buffer. More...
 
void run (const std::vector< cl::Event > *events=nullptr, cl::Event *event=nullptr)
 Executes the necessary kernels. More...
 
int getPower ()
 Gets the power. More...
 
void setPower (int _n)
 Sets the power. More...
 
template<typename period >
double run (clutils::GPUTimer< period > &timer, const std::vector< cl::Event > *events=nullptr)
 Executes the necessary kernels. More...
 

Public Attributes

cl_float * hPtrIn
 
cl_float * hPtrOut
 

Detailed Description

Interface class for the pown_ kernel.

pown_ raises an array to an integer power, element-wise. For more details, look at the kernel's documentation.

Note
The pown_ kernel is available in kernels/math_kernels.cl.
The class creates its own buffers. If you would like to provide your own buffers, call get to get references to the placeholders within the class and assign them to your buffers. You will have to do this strictly before the call to init. You can also call get (after the call to init) to get a reference to a buffer within the class and assign it to another kernel class instance further down in your task pipeline.

The following input/output OpenCL memory objects are created by a Pown instance:

Name Type Placement I/O Use Properties Size
H_IN Buffer Host I Staging CL_MEM_READ_WRITE \(3*width*height*sizeof\ (cl\_float)\)
H_OUTBuffer Host O Staging CL_MEM_READ_WRITE \(3*width*height*sizeof\ (cl\_float)\)
D_IN Buffer Device I Processing CL_MEM_READ_ONLY \(3*width*height*sizeof\ (cl\_float)\)
D_OUTBuffer Device O Processing CL_MEM_WRITE_ONLY \(3*width*height*sizeof\ (cl\_float)\)

Member Enumeration Documentation

enum cl_algo::GF::Math::Pown::Memory : uint8_t
strong

Enumerates the memory objects handled by the class.

Note
H_* names refer to staging buffers on the host.
D_* names refer to buffers on the device.
Enumerator
H_IN 

Input staging buffer.

H_OUT 

Output staging buffer.

D_IN 

Input buffer.

D_OUT 

Output buffer.

Constructor & Destructor Documentation

cl_algo::GF::Math::Pown::Pown ( clutils::CLEnv &  _env,
clutils::CLEnvInfo< 1 >  _info 
)

Configures an OpenCL environment as specified by _info.

Parameters
[in]_envopencl environment.
[in]_infoopencl configuration. Specifies the context, queue, etc, to be used.

Member Function Documentation

cl::Memory & cl_algo::GF::Math::Pown::get ( Pown::Memory  mem)

Returns a reference to an internal memory object used by pown_.

This interface exists to allow CL memory sharing between different kernels.

Parameters
[in]memenumeration value specifying the requested memory object.
Returns
A reference to the requested memory object.
int cl_algo::GF::Math::Pown::getPower ( )

Gets the power.

Returns
The power.
void cl_algo::GF::Math::Pown::init ( unsigned int  _width,
unsigned int  _height,
int  _n,
Staging  _staging = Staging::IO 
)

Configures kernel execution parameters.

Sets up memory objects as necessary, and defines the kernel workspaces.

Note
If you have assigned a memory object to one member variable of the class before the call to init, then that memory will be maintained. Otherwise, a new memory object will be created.
Parameters
[in]_widthwidth of the input array to be processed.
[in]_heightheight of the input array to be processed.
[in]_npower to which to raise the input array.
[in]_stagingflag to indicate whether or not to instantiate the staging buffers.
void * cl_algo::GF::Math::Pown::read ( Pown::Memory  mem = Pown::Memory::H_OUT,
bool  block = CL_TRUE,
const std::vector< cl::Event > *  events = nullptr,
cl::Event *  event = nullptr 
)

Performs a data transfer to a staging buffer.

The transfer happens from a device buffer to the associated (specified) staging buffer on the host.

Parameters
[in]memenumeration value specifying an output staging buffer.
[in]blocka flag to indicate whether to perform a blocking or a non-blocking operation.
[in]eventsa wait-list of events.
[out]eventevent associated with the read operation to the staging buffer.
void cl_algo::GF::Math::Pown::run ( const std::vector< cl::Event > *  events = nullptr,
cl::Event *  event = nullptr 
)

Executes the necessary kernels.

The function call is non-blocking.

Parameters
[in]eventsa wait-list of events.
[out]eventevent associated with the last kernel execution.
template<typename period >
double cl_algo::GF::Math::Pown::run ( clutils::GPUTimer< period > &  timer,
const std::vector< cl::Event > *  events = nullptr 
)
inline

Executes the necessary kernels.

This run instance is used for profiling.

Parameters
[in]timerGPUTimer that does the profiling of the kernel executions.
[in]eventsa wait-list of events.
Returns
Τhe total execution time measured by the timer.
void cl_algo::GF::Math::Pown::setPower ( int  _n)

Sets the power.

Updates the kernel argument for the power.

Parameters
[in]_npower.
void cl_algo::GF::Math::Pown::write ( Pown::Memory  mem = Pown::Memory::D_IN,
void *  ptr = nullptr,
bool  block = CL_FALSE,
const std::vector< cl::Event > *  events = nullptr,
cl::Event *  event = nullptr 
)

Performs a data transfer to a device buffer.

The transfer happens from a staging buffer on the host to the associated (specified) device buffer.

Parameters
[in]memenumeration value specifying an input device buffer.
[in]ptra pointer to an array holding input data. If not NULL, the data from ptr will be copied to the associated staging buffer.
[in]blocka flag to indicate whether to perform a blocking or a non-blocking operation.
[in]eventsa wait-list of events.
[out]eventevent associated with the write operation to the device buffer.

Member Data Documentation

cl_float* cl_algo::GF::Math::Pown::hPtrIn

Mapping of the input staging buffer.

cl_float* cl_algo::GF::Math::Pown::hPtrOut

Mapping of the output staging buffer.


The documentation for this class was generated from the following files: