Compute Library
 23.05
ClFlatten Class Reference

Basic function to flatten a given input. More...

#include <ClFlatten.h>

Collaboration diagram for ClFlatten:
[legend]

Public Member Functions

void configure (const ClCompileContext &compile_context, const ITensorInfo *src, ITensorInfo *dst)
 Configure operator for a given list of arguments. 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 flatten a given input.

Definition at line 35 of file ClFlatten.h.

Member Function Documentation

◆ configure()

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

Configure operator for a given list of arguments.

Valid data layouts:

  • All

Valid data type configurations:

src dst
All All
Parameters
[in]compile_contextThe compile context to be used.
[in]srcSource tensor to flatten with at least 3 dimensions. The dimensions above the third will be interpreted as batches. Data types supported: All
[in]dstDestination tensor with shape [w*h*d, input_batches] where: w = width input tensor, h = height input tensor and d = depth input tensor. Data type supported: same as src

Definition at line 35 of file ClFlatten.cpp.

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

36 {
38  auto k = std::make_unique<kernels::ClReshapeKernel>();
39  k->configure(compile_context, src, dst);
40  _kernel = std::move(k);
41 }
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 ClFlatten::configure()

Returns
a status

Definition at line 43 of file ClFlatten.cpp.

References ClReshapeKernel::validate().

Referenced by CLFlattenLayer::validate(), and ClFullyConnected::validate().

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

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