92 lines
3.7 KiB
C++
92 lines
3.7 KiB
C++
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2021 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 "builtin_op_impl.h"
|
|
#include "type_utils.h"
|
|
|
|
namespace tim {
|
|
namespace vx {
|
|
|
|
BuiltinOpImpl::BuiltinOpImpl(Graph* graph, int32_t kind, int input_cnt,
|
|
int output_cnt, DataLayout layout)
|
|
: OpImpl(graph, kind, input_cnt, output_cnt, layout),
|
|
node_(vsi_nn_AddNode(graph_->graph(), kind_, input_cnt_, output_cnt_,
|
|
NULL)) {
|
|
SetRoundingPolicy();
|
|
node_->uid = graph_->graph()->cur_nid;
|
|
}
|
|
|
|
BuiltinOpImpl::BuiltinOpImpl(Graph* graph,DataLayout layout)
|
|
: OpImpl(graph, layout){}
|
|
|
|
|
|
BuiltinOpImpl& BuiltinOpImpl::BindInput(
|
|
const std::shared_ptr<Tensor>& tensor) {
|
|
inputs_tensor_.push_back(tensor);
|
|
uint32_t tensor_id = tensor->GetId();
|
|
node_->input.tensors[input_tensor_index++] = tensor_id;
|
|
if (tensor->GetSpec().attr_ & TensorAttribute::INPUT) {
|
|
graph_->AddInput(tensor_id);
|
|
graph_->AddInput(tensor);
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
BuiltinOpImpl& BuiltinOpImpl::BindOutput(
|
|
const std::shared_ptr<Tensor>& tensor) {
|
|
outputs_tensor_.push_back(tensor);
|
|
uint32_t tensor_id = tensor->GetId();
|
|
node_->output.tensors[output_tensor_index++] = tensor_id;
|
|
if (tensor->GetSpec().attr_ == TensorAttribute::OUTPUT) {
|
|
graph_->AddOutput(tensor_id);
|
|
graph_->AddOutput(tensor);
|
|
}
|
|
return *this;
|
|
}
|
|
|
|
void BuiltinOpImpl::SetRoundingPolicy(OverflowPolicy overflow_policy,
|
|
RoundingPolicy rounding_policy,
|
|
RoundType down_scale_size_rounding,
|
|
uint32_t accumulator_bits) {
|
|
node_->vx_param.overflow_policy = TranslateOverflowPolicy(overflow_policy);
|
|
node_->vx_param.rounding_policy = TranslateRoundingPolicy(rounding_policy);
|
|
node_->vx_param.down_scale_size_rounding =
|
|
TranslateDownScaleSizeRounding(down_scale_size_rounding);
|
|
node_->vx_param.accumulator_bits = accumulator_bits;
|
|
}
|
|
|
|
#ifdef TIM_VX_ENABLE_CUSTOM_OP
|
|
CustomOpBaseImpl::CustomOpBaseImpl(Graph* graph, uint32_t operation_id, const void* proc,
|
|
const char* kernel_name, DataLayout layout)
|
|
: BuiltinOpImpl(graph, layout) {
|
|
op_proc_ = proc;
|
|
vsi_nn_node_t* node = vsi_nn_AddExternalNode(graph_->graph(), operation_id,
|
|
proc, NULL, kernel_name);
|
|
node->uid = graph_->graph()->cur_nid;
|
|
SetNode(node);
|
|
SetRoundingPolicy();
|
|
};
|
|
#endif
|
|
|
|
} // namespace vx
|
|
} // namespace tim
|