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

#include <Cos.h>

Collaboration diagram for luci_interpreter::kernels::Cos:

Public Member Functions

 Cos (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 Cos.h.

Constructor & Destructor Documentation

◆ Cos()

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

Definition at line 43 of file Cos.cpp.

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

References input().

Member Function Documentation

◆ configure()

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

Implements luci_interpreter::Kernel.

Definition at line 45 of file Cos.cpp.

46{
47 LUCI_INTERPRETER_CHECK(input()->element_type() == DataType::FLOAT32);
48 LUCI_INTERPRETER_CHECK(input()->element_type() == output()->element_type());
49 output()->resize(input()->shape());
50}
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::Cos::execute ( ) const
overridevirtual

Implements luci_interpreter::Kernel.

Definition at line 52 of file Cos.cpp.

53{
54 switch (input()->element_type())
55 {
56 case DataType::FLOAT32:
57 evalFloat();
58 break;
59 default:
60 throw std::runtime_error("luci-intp Cos Unsupported type.");
61 }
62}

References input().

◆ input()

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

Definition at line 33 of file Cos.h.

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

References luci_interpreter::Kernel::_inputs.

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

◆ output()

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

Definition at line 34 of file Cos.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: