nndeploy C++ API  0.2.0
nndeploy C++ API
op_div.h
Go to the documentation of this file.
1 
2 #ifndef _NNDEPLOY_OP_OP_DIV_H_
3 #define _NNDEPLOY_OP_OP_DIV_H_
4 
5 #include "nndeploy/ir/ir.h"
6 #include "nndeploy/op/op.h"
8 
9 namespace nndeploy {
10 namespace op {
11 
12 class OpDiv : public OpBinary {
13  public:
14  OpDiv() : OpBinary() {}
15  virtual ~OpDiv() {}
16 
17  virtual base::Status run();
18 };
19 
21  device::Tensor *output);
22 
23 } // namespace op
24 } // namespace nndeploy
25 
26 #endif
Tensorē±»
Definition: tensor.h:26
virtual base::Status run()
virtual ~OpDiv()
Definition: op_div.h:15
#define NNDEPLOY_CC_API
api
Definition: macro.h:29
base::Status div(device::Tensor *input1, device::Tensor *input2, device::Tensor *output)