Imported Upstream version 1.9.0
[platform/core/ml/nnfw.git] / tests / nnfw_api / src / one_op_tests / AveragePool2D.cc
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "GenModelTest.h"
18
19 TEST_F(GenModelTest, OneOp_AvgPool2D)
20 {
21   CircleGen cgen;
22   int in = cgen.addTensor({{1, 2, 2, 1}, circle::TensorType::TensorType_FLOAT32});
23   int out = cgen.addTensor({{1, 1, 1, 1}, circle::TensorType::TensorType_FLOAT32});
24   cgen.addOperatorAveragePool2D({{in}, {out}}, circle::Padding_SAME, 2, 2, 2, 2,
25                                 circle::ActivationFunctionType_NONE);
26   cgen.setInputsAndOutputs({in}, {out});
27
28   _context = std::make_unique<GenModelTestContext>(cgen.finish());
29   _context->addTestCase({{{1, 3, 2, 4}}, {{2.5}}});
30   _context->setBackends({"acl_cl", "acl_neon", "cpu"});
31
32   SUCCEED();
33 }
34
35 TEST_F(GenModelTest, neg_OneOp_AvgPool2D)
36 {
37   CircleGen cgen;
38   int in = cgen.addTensor({{2, 2, 1}, circle::TensorType::TensorType_FLOAT32});
39   int out = cgen.addTensor({{1, 1, 1}, circle::TensorType::TensorType_FLOAT32});
40   cgen.addOperatorAveragePool2D({{in}, {out}}, circle::Padding_SAME, 2, 2, 2, 2,
41                                 circle::ActivationFunctionType_NONE);
42   cgen.setInputsAndOutputs({in}, {out});
43
44   _context = std::make_unique<GenModelTestContext>(cgen.finish());
45   _context->setBackends({"acl_cl", "acl_neon", "cpu"});
46   _context->setCompileFail();
47
48   SUCCEED();
49 }