-
Notifications
You must be signed in to change notification settings - Fork 87
added cumsum op & added OnBindInputPostProc func #489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
added cumsum op & added handle api after BindInput
- Loading branch information
commit 85bea962034eb662cd3aa6b7179bf90bffac45ec
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,61 @@ | ||
| /**************************************************************************** | ||
| * | ||
| * Copyright (c) 2022 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. | ||
| * | ||
| *****************************************************************************/ | ||
| #ifdef VSI_FEAT_OP_CUMSUM | ||
| #ifndef TIM_VX_OPS_CUMSUM_H_ | ||
| #define TIM_VX_OPS_CUMSUM_H_ | ||
|
|
||
| #include "tim/vx/builtin_op.h" | ||
| namespace tim { | ||
| namespace vx { | ||
| namespace ops { | ||
|
|
||
| /** | ||
| * ## Cumsum | ||
| * | ||
| * Compute the cumulative sum of the tensor along the giveb axis. By default, it | ||
| * will do the sum inclusively meaning the first element is copied as is. Through | ||
| * an exclusive attribute, this behavior can change to exclude the first element. | ||
| * It can also perform summation in the opposite direction of the axis by setting | ||
| * reverse atrribution to 1. | ||
| * All the attributes can be combined. | ||
| * - axis : Specify the cumsum eperforming along which axis.Default = 0. | ||
| * - exclusive : If exclusive = 1, perform exclusive cumsum. | ||
| * - reverse : If reverse = 1, the cumsum is performed in the opposite direction. | ||
| */ | ||
|
|
||
| class CumSum : public BuiltinOp { | ||
| public: | ||
| CumSum(Graph* Graph, int32_t axis=0, int32_t exclusive=0, int32_t reverse=0); | ||
chenfeiyue-cfy marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| std::shared_ptr<Operation> Clone(std::shared_ptr<Graph>& graph) const override; | ||
| void HandleAfterBindInput(const std::shared_ptr<Tensor>& tensor, int32_t input_idx) override; | ||
|
|
||
| protected: | ||
| int32_t axis_, exclusive_, reverse_; | ||
| }; | ||
|
|
||
| } // namespace ops | ||
| } // namespace vx | ||
| } // namespace tim | ||
| #endif /* TIM_VX_OPS_CUMSUM_H_ */ | ||
| #endif //(VSI_FEAT_OP_CUMSUM) | ||
This file contains hidden or 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 hidden or 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 hidden or 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,56 @@ | ||
| /**************************************************************************** | ||
| * | ||
| * Copyright (c) 2022 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. | ||
| * | ||
| *****************************************************************************/ | ||
| #ifdef VSI_FEAT_OP_CUMSUM | ||
| #include "tim/vx/ops/cumsum.h" | ||
|
|
||
| #include "builtin_op_impl.h" | ||
| #include "vsi_nn_pub.h" | ||
| namespace tim { | ||
| namespace vx { | ||
| namespace ops { | ||
|
|
||
| CumSum::CumSum(Graph* graph, int32_t axis, int32_t exclusive, int32_t reverse) | ||
| : BuiltinOp(graph, VSI_NN_OP_CUMSUM), axis_(axis), exclusive_(exclusive), reverse_(reverse){ | ||
| this->impl()->node()->nn_param.cumsum.axis = axis_; | ||
| this->impl()->node()->nn_param.cumsum.exclusive = exclusive_; | ||
| this->impl()->node()->nn_param.cumsum.reverse = reverse_; | ||
| } | ||
|
|
||
| void CumSum::HandleAfterBindInput(const std::shared_ptr<Tensor>& tensor, int32_t input_idx){ | ||
| if (axis_ < 0){ | ||
| axis_ += tensor->GetShape().size(); | ||
| (void) input_idx; | ||
| this->impl()->node()->nn_param.cumsum.axis = axis_; | ||
| } | ||
| } | ||
|
|
||
| std::shared_ptr<Operation> CumSum::Clone(std::shared_ptr<Graph>& graph) const { | ||
| return graph->CreateOperation<CumSum>(this->axis_, this->exclusive_, this->reverse_); | ||
| } | ||
|
|
||
| } // namespace ops | ||
| } // namespace vx | ||
| } // namespace tim | ||
|
|
||
| #endif //(VSI_FEAT_OP_CUMSUM) |
This file contains hidden or 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,206 @@ | ||
| /**************************************************************************** | ||
| * | ||
| * Copyright (c) 2022 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. | ||
| * | ||
| *****************************************************************************/ | ||
| #ifdef VSI_FEAT_OP_CUMSUM | ||
| #include "tim/vx/context.h" | ||
| #include "tim/vx/graph.h" | ||
| #include "tim/vx/ops/cumsum.h" | ||
|
|
||
| #include "gtest/gtest.h" | ||
|
|
||
| TEST(CumSum, shape_4_2_fp32_axis_0_exclusive_0_reverse_0) { | ||
| auto ctx = tim::vx::Context::Create(); | ||
| auto graph = ctx->CreateGraph(); | ||
|
|
||
| tim::vx::ShapeType io_shape({4, 2}); | ||
| tim::vx::TensorSpec input_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::INPUT); | ||
| tim::vx::TensorSpec output_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::OUTPUT); | ||
|
|
||
| auto input_tensor = graph->CreateTensor(input_spec); | ||
| auto output_tensor = graph->CreateTensor(output_spec); | ||
|
|
||
| std::vector<float> in_data = { | ||
| 2, 4, 6, 8, | ||
| 1, 3, 5, 7, | ||
|
|
||
| }; | ||
| std::vector<float> golden = { | ||
| 2, 6, 12, 20, | ||
| 1, 4, 9, 16, | ||
| }; | ||
|
|
||
| EXPECT_TRUE(input_tensor->CopyDataToTensor(in_data.data(), in_data.size() * sizeof(float))); | ||
|
|
||
| auto op = graph->CreateOperation<tim::vx::ops::CumSum>(0,0,0); | ||
| (*op).BindInputs({input_tensor}).BindOutputs({output_tensor}); | ||
|
|
||
| EXPECT_TRUE(graph->Compile()); | ||
| EXPECT_TRUE(graph->Run()); | ||
|
|
||
| std::vector<float> output(golden.size()); | ||
| EXPECT_TRUE(output_tensor->CopyDataFromTensor(output.data())); | ||
| EXPECT_EQ(golden, output); | ||
| } | ||
|
|
||
| TEST(CumSum, shape_4_2_fp32_axis_1_exclusive_0_reverse_0) { | ||
| auto ctx = tim::vx::Context::Create(); | ||
| auto graph = ctx->CreateGraph(); | ||
|
|
||
| tim::vx::ShapeType io_shape({4, 2}); | ||
| tim::vx::TensorSpec input_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::INPUT); | ||
| tim::vx::TensorSpec output_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::OUTPUT); | ||
|
|
||
| auto input_tensor = graph->CreateTensor(input_spec); | ||
| auto output_tensor = graph->CreateTensor(output_spec); | ||
|
|
||
| std::vector<float> in_data = { | ||
| 2, 4, 6, 8, | ||
| 1, 3, 5, 7, | ||
|
|
||
| }; | ||
| std::vector<float> golden = { | ||
| 2, 4, 6, 8, | ||
| 3, 7, 11,15, | ||
| }; | ||
|
|
||
| EXPECT_TRUE(input_tensor->CopyDataToTensor(in_data.data(), in_data.size() * sizeof(float))); | ||
|
|
||
| auto op = graph->CreateOperation<tim::vx::ops::CumSum>(1,0,0); | ||
| (*op).BindInputs({input_tensor}).BindOutputs({output_tensor}); | ||
|
|
||
| EXPECT_TRUE(graph->Compile()); | ||
| EXPECT_TRUE(graph->Run()); | ||
|
|
||
| std::vector<float> output(golden.size()); | ||
| EXPECT_TRUE(output_tensor->CopyDataFromTensor(output.data())); | ||
| EXPECT_EQ(golden, output); | ||
| } | ||
|
|
||
| TEST(CumSum, shape_4_1_fp32_axis_0_exclusive_1_reverse_0) { | ||
| auto ctx = tim::vx::Context::Create(); | ||
| auto graph = ctx->CreateGraph(); | ||
|
|
||
| tim::vx::ShapeType io_shape({4, 1}); | ||
| tim::vx::TensorSpec input_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::INPUT); | ||
| tim::vx::TensorSpec output_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::OUTPUT); | ||
|
|
||
| auto input_tensor = graph->CreateTensor(input_spec); | ||
| auto output_tensor = graph->CreateTensor(output_spec); | ||
|
|
||
| std::vector<float> in_data = { | ||
| 2, 4, 6, 8, | ||
|
|
||
| }; | ||
| std::vector<float> golden = { | ||
| 0, 2, 6, 12, | ||
| }; | ||
|
|
||
| EXPECT_TRUE(input_tensor->CopyDataToTensor(in_data.data(), in_data.size() * sizeof(float))); | ||
|
|
||
| auto op = graph->CreateOperation<tim::vx::ops::CumSum>(0,1,0); | ||
| (*op).BindInputs({input_tensor}).BindOutputs({output_tensor}); | ||
|
|
||
| EXPECT_TRUE(graph->Compile()); | ||
| EXPECT_TRUE(graph->Run()); | ||
|
|
||
| std::vector<float> output(golden.size()); | ||
| EXPECT_TRUE(output_tensor->CopyDataFromTensor(output.data())); | ||
| EXPECT_EQ(golden, output); | ||
| } | ||
|
|
||
| TEST(CumSum, shape_4_1_fp32_axis_0_exclusive_1_reverse_1) { | ||
| auto ctx = tim::vx::Context::Create(); | ||
| auto graph = ctx->CreateGraph(); | ||
|
|
||
| tim::vx::ShapeType io_shape({4, 1}); | ||
| tim::vx::TensorSpec input_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::INPUT); | ||
| tim::vx::TensorSpec output_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::OUTPUT); | ||
|
|
||
| auto input_tensor = graph->CreateTensor(input_spec); | ||
| auto output_tensor = graph->CreateTensor(output_spec); | ||
|
|
||
| std::vector<float> in_data = { | ||
| 2, 4, 6, 8, | ||
|
|
||
| }; | ||
| std::vector<float> golden = { | ||
| 18, 14, 8, 0, | ||
| }; | ||
|
|
||
| EXPECT_TRUE(input_tensor->CopyDataToTensor(in_data.data(), in_data.size() * sizeof(float))); | ||
|
|
||
| auto op = graph->CreateOperation<tim::vx::ops::CumSum>(0,1,1); | ||
| (*op).BindInputs({input_tensor}).BindOutputs({output_tensor}); | ||
|
|
||
| EXPECT_TRUE(graph->Compile()); | ||
| EXPECT_TRUE(graph->Run()); | ||
|
|
||
| std::vector<float> output(golden.size()); | ||
| EXPECT_TRUE(output_tensor->CopyDataFromTensor(output.data())); | ||
| EXPECT_EQ(golden, output); | ||
| } | ||
|
|
||
| TEST(CumSum, shape_4_2_fp32_axis_minus1_exclusive_1_reverse_1) { | ||
| auto ctx = tim::vx::Context::Create(); | ||
| auto graph = ctx->CreateGraph(); | ||
|
|
||
| tim::vx::ShapeType io_shape({4, 2}); | ||
| tim::vx::TensorSpec input_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::INPUT); | ||
| tim::vx::TensorSpec output_spec(tim::vx::DataType::FLOAT32, | ||
| io_shape, tim::vx::TensorAttribute::OUTPUT); | ||
|
|
||
| auto input_tensor = graph->CreateTensor(input_spec); | ||
| auto output_tensor = graph->CreateTensor(output_spec); | ||
|
|
||
| std::vector<float> in_data = { | ||
| 2, 4, 6, 8, | ||
| 1, 3, 5, 7, | ||
|
|
||
| }; | ||
| std::vector<float> golden = { | ||
| 1, 3, 5, 7, | ||
| 0, 0, 0, 0, | ||
| }; | ||
|
|
||
| EXPECT_TRUE(input_tensor->CopyDataToTensor(in_data.data(), in_data.size() * sizeof(float))); | ||
|
|
||
| auto op = graph->CreateOperation<tim::vx::ops::CumSum>(-1,1,1); | ||
| (*op).BindInputs({input_tensor}).BindOutputs({output_tensor}); | ||
|
|
||
| EXPECT_TRUE(graph->Compile()); | ||
| EXPECT_TRUE(graph->Run()); | ||
|
|
||
| std::vector<float> output(golden.size()); | ||
| EXPECT_TRUE(output_tensor->CopyDataFromTensor(output.data())); | ||
| EXPECT_EQ(golden, output); | ||
| } | ||
| #endif //(VSI_FEAT_OP_CUMSUM) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.