6fa50b5646d0de930a9da5e37f95be910676208d
[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/TypeInferencePass.h>
22
23 #include <logo/Phase.h>
24
25 #include <memory>
26
27 namespace luci
28 {
29
30 void optimize(loco::Graph *g)
31 {
32   logo::Phase phase;
33   {
34     // prepare type and shape before optimization
35     phase.emplace_back(std::make_unique<TypeInferencePass>());
36     phase.emplace_back(std::make_unique<ShapeInferencePass>());
37
38     // TODO add more optimization passes (with a knob)
39   }
40
41   logo::PhaseRunner<logo::PhaseStrategy::Restart> phase_runner{g};
42
43   ProgressReporter prog(g, logo::PhaseStrategy::Restart);
44   phase_runner.attach(&prog);
45   phase_runner.run(phase);
46 }
47
48 } // namespace luci