Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / compiler / luci / lang / src / Nodes / CircleLeakyRelu.test.cpp
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 "luci/IR/Nodes/CircleLeakyRelu.h"
18
19 #include "luci/IR/CircleDialect.h"
20 #include "luci/IR/CircleNodeVisitor.h"
21
22 #include <gtest/gtest.h>
23
24 TEST(CircleLeakyReluTest, constructor)
25 {
26   luci::CircleLeakyRelu relu_node;
27
28   ASSERT_EQ(luci::CircleDialect::get(), relu_node.dialect());
29   ASSERT_EQ(luci::CircleOpcode::LEAKY_RELU, relu_node.opcode());
30
31   ASSERT_EQ(nullptr, relu_node.features());
32
33   ASSERT_EQ(0.2f, relu_node.alpha());
34 }
35
36 TEST(CircleLeakyReluTest, input_NEG)
37 {
38   luci::CircleLeakyRelu relu_node;
39   luci::CircleLeakyRelu node;
40
41   relu_node.features(&node);
42   ASSERT_NE(nullptr, relu_node.features());
43
44   relu_node.features(nullptr);
45   ASSERT_EQ(nullptr, relu_node.features());
46
47   relu_node.alpha(1.2f);
48   ASSERT_NE(0.2f, relu_node.alpha());
49 }
50
51 TEST(CircleLeakyReluTest, arity_NEG)
52 {
53   luci::CircleLeakyRelu relu_node;
54
55   ASSERT_NO_THROW(relu_node.arg(0));
56   ASSERT_THROW(relu_node.arg(1), std::out_of_range);
57 }
58
59 TEST(CircleLeakyReluTest, visit_mutable_NEG)
60 {
61   struct TestVisitor final : public luci::CircleNodeMutableVisitor<void>
62   {
63   };
64
65   luci::CircleLeakyRelu relu_node;
66
67   TestVisitor tv;
68   ASSERT_THROW(relu_node.accept(&tv), std::exception);
69 }
70
71 TEST(CircleLeakyReluTest, visit_NEG)
72 {
73   struct TestVisitor final : public luci::CircleNodeVisitor<void>
74   {
75   };
76
77   luci::CircleLeakyRelu relu_node;
78
79   TestVisitor tv;
80   ASSERT_THROW(relu_node.accept(&tv), std::exception);
81 }