Compute Library
 23.05
ClAbs Class Reference

Basic function to get the absolute value of an src tensor. More...

#include <ClElementwiseUnary.h>

Collaboration diagram for ClAbs:
[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 get the absolute value of an src tensor.

Definition at line 135 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 86 of file ClElementwiseUnary.cpp.

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

87 {
89  auto k = std::make_unique<kernels::ClElementWiseUnaryKernel>();
90  k->configure(compile_context, src, dst, ElementWiseUnary::ABS);
91  _kernel = std::move(k);
92 }
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 ClAbs::configure()

Returns
a status

Definition at line 94 of file ClElementwiseUnary.cpp.

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

Referenced by CLAbsLayer::validate().

95 {
97 }
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: