2021-01-11 18:16:03 +08:00
|
|
|
/****************************************************************************
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2020 Vivante Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
#include "tim/vx/ops/activations.h"
|
|
|
|
|
|
2021-12-29 11:08:24 +08:00
|
|
|
#include "direct_map_op_impl.h"
|
2021-01-11 18:16:03 +08:00
|
|
|
#include "vsi_nn_pub.h"
|
|
|
|
|
|
|
|
|
|
namespace tim {
|
|
|
|
|
namespace vx {
|
|
|
|
|
namespace ops {
|
|
|
|
|
|
2021-07-05 19:26:25 +08:00
|
|
|
#define DEFINE_NO_PARAMETER_ACTIVATION(NAME, VSI_OP_CODE) \
|
2022-04-11 19:04:30 +08:00
|
|
|
NAME::NAME(Graph* graph) : DirectMapOp(graph, VSI_OP_CODE) {} \
|
2021-07-05 19:26:25 +08:00
|
|
|
std::shared_ptr<Operation> NAME::Clone(std::shared_ptr<Graph>& graph) \
|
|
|
|
|
const { \
|
|
|
|
|
return graph->CreateOperation<NAME>(); \
|
|
|
|
|
}
|
2021-01-11 18:16:03 +08:00
|
|
|
|
2021-03-19 11:12:12 +08:00
|
|
|
DEFINE_NO_PARAMETER_ACTIVATION(Relu, VSI_NN_OP_RELU)
|
|
|
|
|
DEFINE_NO_PARAMETER_ACTIVATION(Relu1, VSI_NN_OP_RELU1)
|
|
|
|
|
DEFINE_NO_PARAMETER_ACTIVATION(Relu6, VSI_NN_OP_RELU6)
|
|
|
|
|
DEFINE_NO_PARAMETER_ACTIVATION(Sigmoid, VSI_NN_OP_SIGMOID)
|
2021-03-31 12:00:02 +08:00
|
|
|
DEFINE_NO_PARAMETER_ACTIVATION(Mish, VSI_NN_OP_MISH)
|
|
|
|
|
DEFINE_NO_PARAMETER_ACTIVATION(SoftRelu, VSI_NN_OP_SOFTRELU)
|
|
|
|
|
|
2021-01-11 18:16:03 +08:00
|
|
|
#undef DEFINE_NO_PARAMETER_ACTIVATION
|
|
|
|
|
|
2022-04-11 19:04:30 +08:00
|
|
|
Elu::Elu(Graph* graph, float alpha)
|
|
|
|
|
: DirectMapOp(graph, VSI_NN_OP_ELU), alpha_(alpha) {
|
|
|
|
|
this->impl()->node()->nn_param.elu.alpha = alpha_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<Operation> Elu::Clone(std::shared_ptr<Graph>& graph) const {
|
|
|
|
|
return graph->CreateOperation<Elu>(this->alpha_);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-29 11:08:24 +08:00
|
|
|
HardSwish::HardSwish(Graph* graph) : DirectMapOp(graph, VSI_NN_OP_SWISH) {
|
2021-01-11 18:16:03 +08:00
|
|
|
this->impl()->node()->nn_param.swish.type = VSI_NN_HSWISH;
|
|
|
|
|
this->impl()->node()->nn_param.swish.beta = 1.0f;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-05 19:26:25 +08:00
|
|
|
std::shared_ptr<Operation> HardSwish::Clone(
|
|
|
|
|
std::shared_ptr<Graph>& graph) const {
|
|
|
|
|
return graph->CreateOperation<HardSwish>();
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-29 11:08:24 +08:00
|
|
|
Swish::Swish(Graph* graph) : DirectMapOp(graph, VSI_NN_OP_SWISH) {
|
2021-08-16 12:02:21 +08:00
|
|
|
this->impl()->node()->nn_param.swish.type = VSI_NN_SWISH;
|
|
|
|
|
this->impl()->node()->nn_param.swish.beta = 1.0f;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-11 19:04:30 +08:00
|
|
|
std::shared_ptr<Operation> Swish::Clone(std::shared_ptr<Graph>& graph) const {
|
2021-08-16 12:02:21 +08:00
|
|
|
return graph->CreateOperation<Swish>();
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-11 18:16:03 +08:00
|
|
|
Prelu::Prelu(Graph* graph, int axis)
|
2021-12-29 11:08:24 +08:00
|
|
|
: DirectMapOp(graph, VSI_NN_OP_PRELU), axis_(axis) {
|
2021-01-11 18:16:03 +08:00
|
|
|
this->impl()->node()->nn_param.prelu.axis = axis_;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-05 19:26:25 +08:00
|
|
|
std::shared_ptr<Operation> Prelu::Clone(std::shared_ptr<Graph>& graph) const {
|
|
|
|
|
return graph->CreateOperation<Prelu>(this->axis_);
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-13 14:17:19 +08:00
|
|
|
HardSigmoid::HardSigmoid(Graph* graph, float alpha, float beta)
|
|
|
|
|
: DirectMapOp(graph, VSI_NN_OP_HARD_SIGMOID), alpha_(alpha), beta_(beta) {
|
|
|
|
|
this->impl()->node()->nn_param.hard_sigmoid.alpha = alpha_;
|
|
|
|
|
this->impl()->node()->nn_param.hard_sigmoid.beta = beta_;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-11 19:04:30 +08:00
|
|
|
std::shared_ptr<Operation> HardSigmoid::Clone(
|
|
|
|
|
std::shared_ptr<Graph>& graph) const {
|
2022-01-13 14:17:19 +08:00
|
|
|
return graph->CreateOperation<HardSigmoid>(this->alpha_, this->beta_);
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-29 11:08:24 +08:00
|
|
|
Tanh::Tanh(Graph* graph) : DirectMapOp(graph, VSI_NN_OP_TANH) {
|
2021-01-11 18:16:03 +08:00
|
|
|
this->impl()->node()->nn_param.tanh.scale_a = 1.0;
|
|
|
|
|
this->impl()->node()->nn_param.tanh.scale_b = 1.0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-05 19:26:25 +08:00
|
|
|
std::shared_ptr<Operation> Tanh::Clone(std::shared_ptr<Graph>& graph) const {
|
|
|
|
|
return graph->CreateOperation<Tanh>();
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-19 16:44:43 +08:00
|
|
|
LeakyRelu::LeakyRelu(Graph* graph, float alpha)
|
2021-12-29 11:08:24 +08:00
|
|
|
: DirectMapOp(graph, VSI_NN_OP_LEAKY_RELU), alpha_(alpha) {
|
2021-01-19 16:44:43 +08:00
|
|
|
this->impl()->node()->nn_param.activation.leaky_ratio = alpha_;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-05 19:26:25 +08:00
|
|
|
std::shared_ptr<Operation> LeakyRelu::Clone(
|
|
|
|
|
std::shared_ptr<Graph>& graph) const {
|
|
|
|
|
return graph->CreateOperation<LeakyRelu>(this->alpha_);
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-02 17:10:57 +08:00
|
|
|
Linear::Linear(Graph* graph, float a, float b)
|
2021-12-29 11:08:24 +08:00
|
|
|
: DirectMapOp(graph, VSI_NN_OP_LINEAR), a_(a), b_(b) {
|
2021-06-02 17:10:57 +08:00
|
|
|
this->impl()->node()->nn_param.linear.a = a_;
|
|
|
|
|
this->impl()->node()->nn_param.linear.b = b_;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-05 19:26:25 +08:00
|
|
|
std::shared_ptr<Operation> Linear::Clone(std::shared_ptr<Graph>& graph) const {
|
|
|
|
|
return graph->CreateOperation<Linear>(this->a_, this->b_);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 20:37:12 +08:00
|
|
|
Gelu::Gelu(Graph* graph, bool approximate)
|
2022-04-11 19:04:30 +08:00
|
|
|
: DirectMapOp(graph, VSI_NN_OP_GELU) {
|
|
|
|
|
this->impl()->node()->nn_param.gelu.approximate = approximate;
|
|
|
|
|
}
|
2021-08-17 20:37:12 +08:00
|
|
|
|
|
|
|
|
std::shared_ptr<Operation> Gelu::Clone(std::shared_ptr<Graph>& graph) const {
|
2022-04-11 19:04:30 +08:00
|
|
|
return graph->CreateOperation<Gelu>(
|
|
|
|
|
this->impl()->node()->nn_param.gelu.approximate);
|
2021-08-17 20:37:12 +08:00
|
|
|
}
|
|
|
|
|
|
2021-01-11 18:16:03 +08:00
|
|
|
} // namespace ops
|
|
|
|
|
} // namespace vx
|
|
|
|
|
} // namespace tim
|