ONE - On-device Neural Engine
Loading...
Searching...
No Matches
arm_compute::CLNeg Class Reference

#include <CLNeg.h>

Collaboration diagram for arm_compute::CLNeg:

Public Member Functions

void configure (ICLTensor *input, ICLTensor *output)
 

Detailed Description

Definition at line 50 of file CLNeg.h.

Member Function Documentation

◆ configure()

void CLNeg::configure ( ICLTensor *  input,
ICLTensor *  output 
)

Initialise the function's source and destination.

Parameters
[in]inputSource tensor. Data types supported: U8/S8/QASYMM8/U16/S16/F16/U32/S32/F32.
[out]outputOutput tensor. Data types supported: Same as input.

Definition at line 47 of file CLNeg.cpp.

48{
49 auto k = std::make_unique<CLNegKernel>();
50 k->configure(input, output);
51 _kernel = std::move(k);
52}

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