0dd31503f523741dbfc13800ab6cb7f93e336c97
[platform/core/ml/nnfw.git] / compiler / moco-tf / src / Canonicalization / SoftmaxCanonicalizer.h
1 /*
2  * Copyright (c) 2019 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 #ifndef __MOCO_TF_SOFTMAX_CANONICALIZER_H__
18 #define __MOCO_TF_SOFTMAx_CANONICALIZER_H__
19
20 #include "Transform.h"
21 #include "SimpleNodeTransform.h"
22
23 #include <moco/IR/TFNodes.h>
24
25 #include <loco.h>
26
27 namespace moco
28 {
29 namespace tf
30 {
31
32 /**
33  * @brief Canonicalize TF-dialect TFSoftmax into canonical Softmax node
34  */
35 class SoftmaxCanonicalizer : public SimpleNodeTransform<moco::TFSoftmax>
36 {
37 public:
38   const char *name(void) const final { return "SoftmaxCanonicalizer"; }
39
40 public:
41   bool transform(moco::TFSoftmax *) const final;
42 };
43
44 } // namespace tf
45 } // namespace moco
46
47 #endif // __MOCO_TF_SOFTMAX_CANONICALIZER_H__