aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/ops/activation_funcs.h
diff options
context:
space:
mode:
Diffstat (limited to 'reference_model/src/ops/activation_funcs.h')
-rw-r--r--reference_model/src/ops/activation_funcs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/reference_model/src/ops/activation_funcs.h b/reference_model/src/ops/activation_funcs.h
index 10385e0..4853971 100644
--- a/reference_model/src/ops/activation_funcs.h
+++ b/reference_model/src/ops/activation_funcs.h
@@ -28,7 +28,7 @@ template <int Rank, DType Dtype>
class OpClamp : public UnaryNode<Rank, Dtype>
{
public:
- OpClamp(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, TosaQuantInfoBase* qinfo_, uint64_t id_)
+ OpClamp(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_)
: UnaryNode<Rank, Dtype>(sgt_, Op_CLAMP, id_)
{
INIT_ATTRIBUTE(Clamp);
@@ -48,7 +48,7 @@ template <int Rank, DType Dtype>
class OpSigmoid : public UnaryNode<Rank, Dtype>
{
public:
- OpSigmoid(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, TosaQuantInfoBase* qinfo_, uint64_t id_)
+ OpSigmoid(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_)
: UnaryNode<Rank, Dtype>(sgt_, Op_SIGMOID, id_)
{
register_fcn();
@@ -64,7 +64,7 @@ template <int Rank, DType Dtype>
class OpTanh : public UnaryNode<Rank, Dtype>
{
public:
- OpTanh(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, TosaQuantInfoBase* qinfo_, uint64_t id_)
+ OpTanh(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_)
: UnaryNode<Rank, Dtype>(sgt_, Op_TANH, id_)
{
register_fcn();