ONE - On-device Neural Engine
Loading...
Searching...
No Matches
TestHelper.h
Go to the documentation of this file.
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 __TEST_HELPER_H__
18#define __TEST_HELPER_H__
19
20#include <loco.h>
21
22namespace logo
23{
24namespace test
25{
26
27template <typename T> T *find_first_node_by_type(loco::Graph *g)
28{
29 T *first_node = nullptr;
30
31 for (auto node : loco::postorder_traversal(loco::output_nodes(g)))
32 {
33 first_node = dynamic_cast<T *>(node);
34 if (first_node != nullptr)
35 break;
36 }
37
38 return first_node;
39}
40
41} // namespace test
42} // namespace logo
43
44#endif // __TEST_HELPER_H__
A neural network graph.
Definition Graph.h:161
std::vector< loco::Node * > postorder_traversal(const std::vector< loco::Node * > &roots)
Generate postorder traversal sequence starting from "roots".
Definition Algorithm.cpp:53
std::vector< Node * > output_nodes(Graph *)
Definition Graph.cpp:101
T * find_first_node_by_type(loco::Graph *g)
Definition TestHelper.h:27
Definition Pass.h:25