Compute Library
 23.05
ClLog Class Reference

Basic function to perform elementwise log on an src tensor. More...

#include <ClElementwiseUnary.h>

Collaboration diagram for ClLog:
[legend]

Public Member Functions

void configure (const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
 Initialize the function. More...
 
- Public Member Functions inherited from ICLOperator
 ICLOperator (IRuntimeContext *ctx=nullptr)
 Constructor. More...
 
 ICLOperator (const ICLOperator &)=delete
 Prevent instances of this class from being copied (As this class contains pointers) More...
 
 ICLOperator (ICLOperator &&)=default
 Default move constructor. More...
 
ICLOperatoroperator= (const ICLOperator &)=delete
 Prevent instances of this class from being copied (As this class contains pointers) More...
 
ICLOperatoroperator= (ICLOperator &&)=default
 Default move assignment operator. More...
 
void run (ITensorPack &tensors) override
 Run the kernels contained in the function. More...
 
void prepare (ITensorPack &constants) override
 Prepare the function for executing. More...
 
MemoryRequirements workspace () const override
 Return the memory requirements required by the workspace. More...
 
- Public Member Functions inherited from IOperator
virtual ~IOperator ()=default
 Destructor. More...
 

Static Public Member Functions

static Status validate (const ITensorInfo *src, const ITensorInfo *dst)
 Static function to check if given info will lead to a valid configuration. More...
 

Detailed Description

Basic function to perform elementwise log on an src tensor.

Definition at line 115 of file ClElementwiseUnary.h.

Member Function Documentation

◆ configure()

void configure ( const ClCompileContext compile_context,
const ITensorInfo src,
ITensorInfo dst 
)

Initialize the function.

Parameters
[in]compile_contextThe compile context to be used.
[in]srcSource tensor info. Data types supported: F16/F32.
[out]dstDestination tensor info. Data types supported: same as src.

Definition at line 99 of file ClElementwiseUnary.cpp.

References ARM_COMPUTE_LOG_PARAMS, arm_compute::test::validation::k, and arm_compute::LOG.

100 {
102  auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
103  k->configure(compile_context, src, dst, ElementWiseUnary::LOG);
104  _kernel = std::move(k);
105 }
SimpleTensor< float > src
Definition: DFT.cpp:155
#define ARM_COMPUTE_LOG_PARAMS(...)

◆ validate()

Status validate ( const ITensorInfo src,
const ITensorInfo dst 
)
static

Static function to check if given info will lead to a valid configuration.

Similar to ClLog::configure()

Returns
a status

Definition at line 107 of file ClElementwiseUnary.cpp.

References arm_compute::LOG, and ClElementWiseUnaryKernel::validate().

Referenced by CLLogLayer::validate().

108 {
110 }
SimpleTensor< float > src
Definition: DFT.cpp:155
static Status validate(const ITensorInfo *src, const ITensorInfo *dst, const ElementWiseUnary &op)
Static function to check if given info will lead to a valid configuration.

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