Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / runtime / onert / core / src / dumper / dot / OperationNode.cc
1 /*
2  * Copyright (c) 2018 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 <sstream>
18
19 #include "OperationNode.h"
20 #include "ir/Graph.h"
21 #include "backend/IConfig.h"
22 #include "backend/Backend.h"
23
24 namespace onert
25 {
26 namespace dumper
27 {
28 namespace dot
29 {
30
31 const std::string Operation::OPERATION_SHAPE = "rect";
32 const std::string Operation::BG_COLOR_SCHEME = "pastel18";
33
34 Operation::Operation(const ir::OperationIndex &index, const ir::IOperation &node)
35   : Node{"operation" + std::to_string(index.value())}
36 {
37   setAttribute("label", std::to_string(index.value()) + " : " + node.name());
38   setAttribute("shape", OPERATION_SHAPE);
39   setAttribute("colorscheme", BG_COLOR_SCHEME);
40   setAttribute("fillcolor", DEFAULT_FILLCOLOR);
41 }
42
43 } // namespace dot
44 } // namespace dumper
45 } // namespace onert