Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / compiler / luci / pass / src / DynamicBatchToSingleBatch.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/DynamicBatchToSingleBatch.h"
18
19 #include "luci/Pass/DynamicBatchToSingleBatchPass.h"
20 #include "luci/Pass/CircleShapeInferencePass.h"
21
22 #include "ProgressReporter.h"
23
24 #include <logo/Phase.h>
25
26 namespace luci
27 {
28
29 void dynamic_batch_to_single_batch(luci::Module *m)
30 {
31   assert(m); // FIX CALLER UNLESS
32
33   for (uint32_t i = 0; i < m->size(); i++)
34   {
35     auto g = m->graph(i);
36
37     logo::Phase phase;
38
39     phase.emplace_back(std::make_unique<luci::DynamicBatchToSingleBatchPass>());
40
41     // Needed to infer shapes of other nodes
42     phase.emplace_back(std::make_unique<luci::CircleShapeInferencePass>());
43
44     ProgressReporter prog(g, logo::PhaseStrategy::Saturate);
45     logo::PhaseRunner<logo::PhaseStrategy::Saturate> phase_runner{g};
46     phase_runner.attach(&prog);
47     phase_runner.run(phase);
48   }
49 }
50
51 } // namespace luci