ONE - On-device Neural Engine
Loading...
Searching...
No Matches
luci_interpreter::kernels::Neg Class Reference

#include <Neg.h>

Collaboration diagram for luci_interpreter::kernels::Neg:

Public Member Functions

 Neg (const Tensor *input, Tensor *output)
 
const Tensorinput () const
 
Tensoroutput () const
 
void configure () override
 
void execute () const override
 
- Public Member Functions inherited from luci_interpreter::Kernel
virtual ~Kernel ()=default
 
const std::vector< const Tensor * > & getInputTensors () const
 
const std::vector< Tensor * > & getOutputTensors () const
 

Additional Inherited Members

- Protected Member Functions inherited from luci_interpreter::Kernel
 Kernel (std::vector< const Tensor * > inputs, std::vector< Tensor * > outputs)
 
- Protected Attributes inherited from luci_interpreter::Kernel
const std::vector< const Tensor * > _inputs
 
const std::vector< Tensor * > _outputs
 

Detailed Description

Definition at line 28 of file Neg.h.

Constructor & Destructor Documentation

◆ Neg()

luci_interpreter::kernels::Neg::Neg ( const Tensor input,
Tensor output 
)

Definition at line 30 of file Neg.cpp.

30: Kernel({input}, {output}) {}
Kernel(std::vector< const Tensor * > inputs, std::vector< Tensor * > outputs)
Definition Kernel.h:31
const Tensor * input() const
Definition Neg.h:33
Tensor * output() const
Definition Neg.h:34

References input().

Member Function Documentation

◆ configure()

void luci_interpreter::kernels::Neg::configure ( )
overridevirtual

Implements luci_interpreter::Kernel.

Definition at line 32 of file Neg.cpp.

33{
34 LUCI_INTERPRETER_CHECK(input()->element_type() == output()->element_type());
35
36 output()->resize(input()->shape());
37}
void resize(const Shape &new_shape)
Definition Tensor.cpp:56
#define LUCI_INTERPRETER_CHECK(cond)
Definition Utils.h:36

References input(), LUCI_INTERPRETER_CHECK, output(), and luci_interpreter::Tensor::resize().

◆ execute()

void luci_interpreter::kernels::Neg::execute ( ) const
overridevirtual

Implements luci_interpreter::Kernel.

Definition at line 39 of file Neg.cpp.

40{
41 switch (input()->element_type())
42 {
43 case DataType::FLOAT32:
44 evalFloat();
45 break;
46 default:
47 throw std::runtime_error("luci-intp Neg Unsupported type.");
48 }
49}

References input().

◆ input()

const Tensor * luci_interpreter::kernels::Neg::input ( ) const
inline

Definition at line 33 of file Neg.h.

33{ return _inputs[0]; }
const std::vector< const Tensor * > _inputs
Definition Kernel.h:52

References luci_interpreter::Kernel::_inputs.

Referenced by configure(), execute(), and Neg().

◆ output()

Tensor * luci_interpreter::kernels::Neg::output ( ) const
inline

Definition at line 34 of file Neg.h.

34{ return _outputs[0]; }
const std::vector< Tensor * > _outputs
Definition Kernel.h:53

References luci_interpreter::Kernel::_outputs.

Referenced by configure().


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