Imported Upstream version 1.12.0
[platform/core/ml/nnfw.git] / compiler / luci / export / src / Optimize.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 "Optimize.h"
18 #include "ProgressReporter.h"
19
20 #include <luci/Pass/ShapeInferencePass.h>
21 #include <luci/Pass/ShapeSignatureInferencePass.h>
22 #include <luci/Pass/TypeInferencePass.h>
23
24 #include <logo/Phase.h>
25
26 #include <memory>
27
28 namespace luci
29 {
30
31 void optimize(loco::Graph *g)
32 {
33   logo::Phase phase;
34   {
35     // prepare type and shape before optimization
36     phase.emplace_back(std::make_unique<TypeInferencePass>());
37     phase.emplace_back(std::make_unique<ShapeInferencePass>());
38     phase.emplace_back(std::make_unique<ShapeSignatureInferencePass>());
39
40     // TODO add more optimization passes (with a knob)
41   }
42
43   logo::PhaseRunner<logo::PhaseStrategy::Restart> phase_runner{g};
44
45   ProgressReporter prog(g, logo::PhaseStrategy::Restart);
46   phase_runner.attach(&prog);
47   phase_runner.run(phase);
48 }
49
50 } // namespace luci