Mapped Erf operation & unit tests (#211)
Signed-off-by: Chen Xin <jack.chen@verisilicon.com> Co-authored-by: Chen Xin <jack.chen@verisilicon.com>
This commit is contained in:
parent
d019a76db5
commit
516a914c73
|
|
@ -38,6 +38,7 @@
|
||||||
#include "tim/vx/ops/depth2space.h"
|
#include "tim/vx/ops/depth2space.h"
|
||||||
#include "tim/vx/ops/dropout.h"
|
#include "tim/vx/ops/dropout.h"
|
||||||
#include "tim/vx/ops/elementwise.h"
|
#include "tim/vx/ops/elementwise.h"
|
||||||
|
#include "tim/vx/ops/erf.h"
|
||||||
#include "tim/vx/ops/fullyconnected.h"
|
#include "tim/vx/ops/fullyconnected.h"
|
||||||
#include "tim/vx/ops/gather.h"
|
#include "tim/vx/ops/gather.h"
|
||||||
#include "tim/vx/ops/gathernd.h"
|
#include "tim/vx/ops/gathernd.h"
|
||||||
|
|
@ -75,6 +76,7 @@
|
||||||
#include "tim/vx/ops/squeeze.h"
|
#include "tim/vx/ops/squeeze.h"
|
||||||
#include "tim/vx/ops/stack.h"
|
#include "tim/vx/ops/stack.h"
|
||||||
#include "tim/vx/ops/stridedslice.h"
|
#include "tim/vx/ops/stridedslice.h"
|
||||||
|
#include "tim/vx/ops/svdf.h"
|
||||||
#include "tim/vx/ops/tile.h"
|
#include "tim/vx/ops/tile.h"
|
||||||
#include "tim/vx/ops/transpose.h"
|
#include "tim/vx/ops/transpose.h"
|
||||||
#include "tim/vx/ops/unidirectional_sequence_lstm.h"
|
#include "tim/vx/ops/unidirectional_sequence_lstm.h"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,53 @@
|
||||||
|
/****************************************************************************
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*****************************************************************************/
|
||||||
|
#ifndef TIM_VX_OPS_ERF_H_
|
||||||
|
#define TIM_VX_OPS_ERF_H_
|
||||||
|
|
||||||
|
#include "tim/vx/operation.h"
|
||||||
|
#include "tim/vx/types.h"
|
||||||
|
|
||||||
|
namespace tim {
|
||||||
|
namespace vx {
|
||||||
|
namespace ops {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ## Erf
|
||||||
|
*
|
||||||
|
* Computes the Gauss error function of x element-wise.
|
||||||
|
*
|
||||||
|
* - no parameters
|
||||||
|
*/
|
||||||
|
|
||||||
|
class Erf : public Operation {
|
||||||
|
public:
|
||||||
|
Erf(Graph* graph);
|
||||||
|
std::shared_ptr<Operation> Clone(std::shared_ptr<Graph>& graph) const override;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace ops
|
||||||
|
} // namespace vx
|
||||||
|
} // namespace tim
|
||||||
|
|
||||||
|
#endif /* TIM_VX_OPS_ERF_H_ */
|
||||||
|
|
||||||
|
|
@ -100,10 +100,10 @@ SpatialTransformer|SPATIAL_TRANSFORMER|Mapped|[SpatialTransformer](https://githu
|
||||||
shuffle_channel|SHUFFLECHANNEL|Mapped|[ANEURALNETWORKS_CHANNEL_SHUFFLE](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a5b993c1211c4b1bc52fb595a3025251d)
|
shuffle_channel|SHUFFLECHANNEL|Mapped|[ANEURALNETWORKS_CHANNEL_SHUFFLE](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a5b993c1211c4b1bc52fb595a3025251d)
|
||||||
Gelu|GELU|Mapped|[tf.nn.gelu](https://tensorflow.google.cn/api_docs/python/tf/nn/gelu)
|
Gelu|GELU|Mapped|[tf.nn.gelu](https://tensorflow.google.cn/api_docs/python/tf/nn/gelu)
|
||||||
Svdf|SVDF|Mapped|[ANEURALNETWORKS_SVDF](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a7096de21038c1ce49d354a00cba7b552)
|
Svdf|SVDF|Mapped|[ANEURALNETWORKS_SVDF](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a7096de21038c1ce49d354a00cba7b552)
|
||||||
|
Erf|ERF|Mapped|[tf.math.erf](https://tensorflow.google.cn/api_docs/python/tf/math/erf)
|
||||||
||PROPOSAL| TBD |[Faster-RCNN Proposal Layer](https://github.com/intel/caffe/blob/master/examples/faster-rcnn/lib/rpn/proposal_layer.py)
|
||PROPOSAL| TBD |[Faster-RCNN Proposal Layer](https://github.com/intel/caffe/blob/master/examples/faster-rcnn/lib/rpn/proposal_layer.py)
|
||||||
||ROI_POOL|Planned 22Q1 |[ANEURALNETWORKS_ROI_POOLING](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a6736198af337b2efbdb0b6b64dee7fe4)
|
||ROI_POOL|Planned 22Q1 |[ANEURALNETWORKS_ROI_POOLING](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a6736198af337b2efbdb0b6b64dee7fe4)
|
||||||
||ROI_ALIGN| TBD |[ANEURALNETWORKS_ROI_ALIGN](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a2848b39dd4bfba78f2438fda0d9397a4)
|
||ROI_ALIGN| TBD |[ANEURALNETWORKS_ROI_ALIGN](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a2848b39dd4bfba78f2438fda0d9397a4)
|
||||||
||SHUFFLECHANNEL|Mapped|[ANEURALNETWORKS_CHANNEL_SHUFFLE](https://developer.android.com/ndk/reference/group/neural-networks#group___neural_networks_1ggaabbe492c60331b13038e39d4207940e0a5b993c1211c4b1bc52fb595a3025251d)
|
|
||||||
||SIGNAL_FRAME|Planned 21Q3|[tf.signal.frame](https://tensorflow.google.cn/api_docs/python/tf/signal/frame)
|
||SIGNAL_FRAME|Planned 21Q3|[tf.signal.frame](https://tensorflow.google.cn/api_docs/python/tf/signal/frame)
|
||||||
||TOPK|Planned 21Q4|[tf.math.top_k](https://tensorflow.google.cn/api_docs/python/tf/math/top_k)
|
||TOPK|Planned 21Q4|[tf.math.top_k](https://tensorflow.google.cn/api_docs/python/tf/math/top_k)
|
||||||
|GRUCell|GRUCELL_OVXLIB|Planned 21Q3|[tf.keras.layers.GRUCell](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/GRUCell?hl=en)
|
|GRUCell|GRUCELL_OVXLIB|Planned 21Q3|[tf.keras.layers.GRUCell](https://tensorflow.google.cn/api_docs/python/tf/keras/layers/GRUCell?hl=en)
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,42 @@
|
||||||
|
/****************************************************************************
|
||||||
|
*
|
||||||
|
* 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 "tim/vx/ops/erf.h"
|
||||||
|
|
||||||
|
#include "operation_private.h"
|
||||||
|
#include "type_utils.h"
|
||||||
|
#include "vsi_nn_pub.h"
|
||||||
|
|
||||||
|
namespace tim {
|
||||||
|
namespace vx {
|
||||||
|
namespace ops {
|
||||||
|
|
||||||
|
Erf::Erf(Graph* graph) : Operation(graph, VSI_NN_OP_ERF) {}
|
||||||
|
|
||||||
|
std::shared_ptr<Operation> Erf::Clone(std::shared_ptr<Graph>& graph) const {
|
||||||
|
return graph->CreateOperation<Erf>();
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace ops
|
||||||
|
} // namespace vx
|
||||||
|
} // namespace tim
|
||||||
|
|
@ -0,0 +1,124 @@
|
||||||
|
/****************************************************************************
|
||||||
|
*
|
||||||
|
* 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 "tim/vx/context.h"
|
||||||
|
#include "tim/vx/graph.h"
|
||||||
|
#include "tim/vx/ops/erf.h"
|
||||||
|
|
||||||
|
#include "gtest/gtest.h"
|
||||||
|
#include "test_utils.h"
|
||||||
|
|
||||||
|
TEST(Erf, shape_3_2_fp32) {
|
||||||
|
auto ctx = tim::vx::Context::Create();
|
||||||
|
auto graph = ctx->CreateGraph();
|
||||||
|
|
||||||
|
tim::vx::ShapeType in_shape({3, 2});
|
||||||
|
tim::vx::ShapeType out_shape({3, 2});
|
||||||
|
tim::vx::TensorSpec in_spec(tim::vx::DataType::FLOAT32, in_shape,
|
||||||
|
tim::vx::TensorAttribute::INPUT);
|
||||||
|
tim::vx::TensorSpec out_spec(tim::vx::DataType::FLOAT32, out_shape,
|
||||||
|
tim::vx::TensorAttribute::OUTPUT);
|
||||||
|
|
||||||
|
auto in_tensor = graph->CreateTensor(in_spec);
|
||||||
|
auto out_tensor = graph->CreateTensor(out_spec);
|
||||||
|
|
||||||
|
std::vector<float> in_data = {
|
||||||
|
1, 2, 3,
|
||||||
|
0,-1,-2};
|
||||||
|
std::vector<float> golden = {
|
||||||
|
0.8427007, 0.9953223, 0.999978,
|
||||||
|
0 ,-0.8427007,-0.9953223};
|
||||||
|
|
||||||
|
EXPECT_TRUE(in_tensor->CopyDataToTensor(in_data.data(),
|
||||||
|
in_data.size() * sizeof(float)));
|
||||||
|
auto op = graph->CreateOperation<tim::vx::ops::Erf>();
|
||||||
|
(*op).BindInput(in_tensor).BindOutput(out_tensor);
|
||||||
|
|
||||||
|
EXPECT_TRUE(graph->Compile());
|
||||||
|
EXPECT_TRUE(graph->Run());
|
||||||
|
|
||||||
|
std::vector<float> output(golden.size());
|
||||||
|
EXPECT_TRUE(out_tensor->CopyDataFromTensor(output.data()));
|
||||||
|
EXPECT_TRUE(ArraysMatch(golden, output, 1e-2f));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(Erf, shape_3_2_uint8_Quantized) {
|
||||||
|
auto ctx = tim::vx::Context::Create();
|
||||||
|
auto graph = ctx->CreateGraph();
|
||||||
|
|
||||||
|
tim::vx::ShapeType in_shape({3, 2});
|
||||||
|
tim::vx::ShapeType out_shape({3, 2});
|
||||||
|
|
||||||
|
const float InputMin = -128, InputMax = 127, OutputMin = -128,
|
||||||
|
OutputMax = 127;
|
||||||
|
|
||||||
|
std::pair<float, int32_t> scalesAndZp;
|
||||||
|
|
||||||
|
scalesAndZp = QuantizationParams<uint8_t>(InputMin, InputMax);
|
||||||
|
std::vector<float> scalesInput = {scalesAndZp.first}; //scale
|
||||||
|
std::vector<int32_t> zeroPointsInput = {scalesAndZp.second}; //zero point
|
||||||
|
|
||||||
|
scalesAndZp = QuantizationParams<uint8_t>(OutputMin, OutputMax);
|
||||||
|
std::vector<float> scalesOutput = {scalesAndZp.first};
|
||||||
|
std::vector<int32_t> zeroPointsOutput = {scalesAndZp.second};
|
||||||
|
|
||||||
|
tim::vx::Quantization quantInput(tim::vx::QuantType::ASYMMETRIC, 1,
|
||||||
|
scalesInput, zeroPointsInput);
|
||||||
|
tim::vx::Quantization quantOutput(tim::vx::QuantType::ASYMMETRIC, 1,
|
||||||
|
scalesOutput, zeroPointsOutput);
|
||||||
|
|
||||||
|
tim::vx::TensorSpec input_spec(tim::vx::DataType::UINT8, in_shape,
|
||||||
|
tim::vx::TensorAttribute::INPUT, quantInput);
|
||||||
|
|
||||||
|
tim::vx::TensorSpec output_spec(tim::vx::DataType::UINT8, out_shape,
|
||||||
|
tim::vx::TensorAttribute::OUTPUT,
|
||||||
|
quantOutput);
|
||||||
|
|
||||||
|
auto input_tensor = graph->CreateTensor(input_spec);
|
||||||
|
auto output_tensor = graph->CreateTensor(output_spec);
|
||||||
|
|
||||||
|
std::vector<float> in_data_float = {
|
||||||
|
1, 2, 3,
|
||||||
|
0,-1,-2};
|
||||||
|
std::vector<float> golden_float = {
|
||||||
|
0.8427007, 0.9953223, 0.999978,
|
||||||
|
0 ,-0.8427007,-0.9953223};
|
||||||
|
|
||||||
|
std::vector<uint8_t> input_data =
|
||||||
|
Quantize<uint8_t>(in_data_float, scalesInput[0],
|
||||||
|
zeroPointsInput[0]); //Quantification process
|
||||||
|
std::vector<uint8_t> golden =
|
||||||
|
Quantize<uint8_t>(golden_float, scalesOutput[0], zeroPointsOutput[0]);
|
||||||
|
|
||||||
|
EXPECT_TRUE(
|
||||||
|
input_tensor->CopyDataToTensor(input_data.data(), input_data.size() * 4));
|
||||||
|
auto op = graph->CreateOperation<tim::vx::ops::Erf>();
|
||||||
|
(*op).BindInput(input_tensor).BindOutput(output_tensor);
|
||||||
|
|
||||||
|
EXPECT_TRUE(graph->Compile());
|
||||||
|
EXPECT_TRUE(graph->Run());
|
||||||
|
std::vector<uint8_t> output(golden.size());
|
||||||
|
|
||||||
|
EXPECT_TRUE(output_tensor->CopyDataFromTensor(output.data()));
|
||||||
|
EXPECT_EQ(golden, output);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue