75 lines
3.0 KiB
C++
75 lines
3.0 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 "direct_map_op_impl.h"
|
||
|
|
#include "type_utils.h"
|
||
|
|
|
||
|
|
namespace tim{
|
||
|
|
namespace vx{
|
||
|
|
|
||
|
|
DirectMapOpImpl::DirectMapOpImpl(Graph* graph, uint32_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;
|
||
|
|
}
|
||
|
|
|
||
|
|
DirectMapOpImpl& DirectMapOpImpl::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;
|
||
|
|
}
|
||
|
|
|
||
|
|
DirectMapOpImpl& DirectMapOpImpl::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 DirectMapOpImpl::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;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|