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