-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added roi_align layoutinfer & cases (#615)
* Added roi_align layoutinfer & cases Type: New feature Signed-off-by: Chen <[email protected]> * Update instancenorm op spec .json Type: bug fix Signed-off-by: Chen <[email protected]> * Added roi_pool layoutinfer & fixed case bug Type: new feature Signed-off-by: Chen <[email protected]> --------- Signed-off-by: Chen <[email protected]> Co-authored-by: Chen <[email protected]>
- Loading branch information
Showing
12 changed files
with
311 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/**************************************************************************** | ||
* | ||
* Copyright (c) 2020-2023 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. | ||
* | ||
*****************************************************************************/ | ||
#ifndef TIM_LAYOUT_INFER_ROI_ALIGN_LAYOUT_INFERENCE_H_ | ||
#define TIM_LAYOUT_INFER_ROI_ALIGN_LAYOUT_INFERENCE_H_ | ||
|
||
#include "tim/vx/ops/roi_align.h" | ||
|
||
#include "ops/op_layout_inference.h" | ||
#include "permute_vector.h" | ||
#include "builtin_op_impl.h" | ||
|
||
namespace tim { | ||
namespace transform { | ||
|
||
class RoiAlignLayoutInfer : public OpLayoutInfer { | ||
public: | ||
RoiAlignLayoutInfer( | ||
const std::shared_ptr<vx::Operation> op, | ||
std::shared_ptr<layout_inference_impl::LayoutInferContext>& context) | ||
: OpLayoutInfer(op, context) {} | ||
|
||
void OnInputs( | ||
std::vector<std::shared_ptr<vx::Tensor>>& next_tensors) override { | ||
vx::DataLayout layout = op_->impl()->layout_; | ||
auto input_tensors = op_->impl()->InputsTensor(); | ||
std::shared_ptr<IPermuteVector> required_pv; | ||
switch (layout) | ||
{ // kernel layout must be IWHO in tflite & nnapi | ||
case vx::DataLayout::CWHN: | ||
required_pv = std::make_shared<PermuteVector<4>>(kCWHN2WHCN); | ||
break; | ||
case vx::DataLayout::WHCN: | ||
required_pv = MakeShared(4); | ||
break; | ||
default: | ||
VSILOGE("The layout of input is not support."); | ||
required_pv = MakeShared(4); | ||
break; | ||
} | ||
auto input_pv = context_->GetPermuteVector(input_tensors[0]); | ||
auto final_pv = input_pv->Reverse()->Add(required_pv); | ||
std::shared_ptr<vx::Tensor> infer_input; | ||
if (!final_pv->IsAligned()) { | ||
infer_input = InsertPermute(context_->GetMapedTensor(input_tensors[0]), final_pv); | ||
context_->SetPermuteVector(input_tensors[0], required_pv); | ||
} else { | ||
infer_input = context_->GetMapedTensor(input_tensors[0]); | ||
context_->SetPermuteVector(input_tensors[0], input_pv); | ||
} | ||
context_->UpdateTensorMap(input_tensors[0], infer_input); | ||
|
||
for (const auto& t_src : op_->impl()->InputsTensor()) { | ||
if(t_src->IsConstTensor()) { | ||
std::vector<uint8_t> dataRef(t_src->GetSpec().GetByteSize()); | ||
t_src->CopyDataFromTensor(dataRef.data()); | ||
auto t_infer = context_->infer_graph_->CreateTensor( | ||
t_src->GetSpec(), (const void*)dataRef.data()); | ||
context_->SetPermuteVector(t_src, MakeShared(t_src->GetShape().size())); | ||
context_->UpdateTensorMap(t_src, t_infer); | ||
} | ||
} | ||
|
||
auto roi_align = op_->Clone(context_->infer_graph_); | ||
auto outs_infer = CreateOutputsTensor(required_pv); | ||
for (const auto& i_src : op_->impl()->InputsTensor()) { | ||
(*roi_align).BindInput(context_->GetMapedTensor(i_src)); | ||
} | ||
(*roi_align).BindOutput(outs_infer[0]); | ||
context_->SetPermuteVector(op_->impl()->OutputsTensor()[0], required_pv); | ||
// Add out tensor of src_graph into next_tensor | ||
next_tensors.push_back(op_->impl()->OutputsTensor()[0]); | ||
} | ||
}; | ||
|
||
} // namespace transform | ||
} // namespace tim | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/**************************************************************************** | ||
* | ||
* Copyright (c) 2020-2023 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. | ||
* | ||
*****************************************************************************/ | ||
#ifndef TIM_LAYOUT_INFER_ROI_POOL_LAYOUT_INFERENCE_H_ | ||
#define TIM_LAYOUT_INFER_ROI_POOL_LAYOUT_INFERENCE_H_ | ||
|
||
#include "tim/vx/ops/roi_pool.h" | ||
|
||
#include "ops/op_layout_inference.h" | ||
#include "permute_vector.h" | ||
#include "builtin_op_impl.h" | ||
|
||
namespace tim { | ||
namespace transform { | ||
|
||
class RoiPoolLayoutInfer : public OpLayoutInfer { | ||
public: | ||
RoiPoolLayoutInfer( | ||
const std::shared_ptr<vx::Operation> op, | ||
std::shared_ptr<layout_inference_impl::LayoutInferContext>& context) | ||
: OpLayoutInfer(op, context) {} | ||
|
||
void OnInputs( | ||
std::vector<std::shared_ptr<vx::Tensor>>& next_tensors) override { | ||
vx::DataLayout layout = op_->impl()->layout_; | ||
auto input_tensors = op_->impl()->InputsTensor(); | ||
std::shared_ptr<IPermuteVector> required_pv; | ||
switch (layout) | ||
{ // kernel layout must be IWHO in tflite & nnapi | ||
case vx::DataLayout::CWHN: | ||
required_pv = std::make_shared<PermuteVector<4>>(kCWHN2WHCN); | ||
break; | ||
case vx::DataLayout::WHCN: | ||
required_pv = MakeShared(4); | ||
break; | ||
default: | ||
VSILOGE("The layout of input is not support."); | ||
required_pv = MakeShared(4); | ||
break; | ||
} | ||
auto input_pv = context_->GetPermuteVector(input_tensors[0]); | ||
auto final_pv = input_pv->Reverse()->Add(required_pv); | ||
std::shared_ptr<vx::Tensor> infer_input; | ||
if (!final_pv->IsAligned()) { | ||
infer_input = InsertPermute(context_->GetMapedTensor(input_tensors[0]), final_pv); | ||
context_->SetPermuteVector(input_tensors[0], required_pv); | ||
} else { | ||
infer_input = context_->GetMapedTensor(input_tensors[0]); | ||
context_->SetPermuteVector(input_tensors[0], input_pv); | ||
} | ||
context_->UpdateTensorMap(input_tensors[0], infer_input); | ||
|
||
for (const auto& t_src : op_->impl()->InputsTensor()) { | ||
if(t_src->IsConstTensor()) { | ||
std::vector<uint8_t> dataRef(t_src->GetSpec().GetByteSize()); | ||
t_src->CopyDataFromTensor(dataRef.data()); | ||
auto t_infer = context_->infer_graph_->CreateTensor( | ||
t_src->GetSpec(), (const void*)dataRef.data()); | ||
context_->SetPermuteVector(t_src, MakeShared(t_src->GetShape().size())); | ||
context_->UpdateTensorMap(t_src, t_infer); | ||
} | ||
} | ||
|
||
auto roi_pool = op_->Clone(context_->infer_graph_); | ||
auto outs_infer = CreateOutputsTensor(required_pv); | ||
for (const auto& i_src : op_->impl()->InputsTensor()) { | ||
(*roi_pool).BindInput(context_->GetMapedTensor(i_src)); | ||
} | ||
(*roi_pool).BindOutput(outs_infer[0]); | ||
context_->SetPermuteVector(op_->impl()->OutputsTensor()[0], required_pv); | ||
// Add out tensor of src_graph into next_tensor | ||
next_tensors.push_back(op_->impl()->OutputsTensor()[0]); | ||
} | ||
}; | ||
|
||
} // namespace transform | ||
} // namespace tim | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.