blob: 56b50b94241db532076ea84867792854fb8195a8 [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef __ARM_COMPUTE_GRAPH_INODE_H__
25#define __ARM_COMPUTE_GRAPH_INODE_H__
26
Georgios Pinitasff421f22017-10-04 16:53:58 +010027#include "arm_compute/graph/GraphContext.h"
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010028#include "arm_compute/graph/ITensorObject.h"
Anthony Barbier2a07e182017-08-04 18:20:27 +010029#include "arm_compute/graph/Types.h"
30#include "arm_compute/runtime/IFunction.h"
31
32#include <memory>
33
34namespace arm_compute
35{
36namespace graph
37{
38/** Node interface */
39class INode
40{
41public:
42 /** Virtual Destructor */
43 virtual ~INode() = default;
44 /** Interface to be implemented that instantiates the node
45 *
Georgios Pinitasff421f22017-10-04 16:53:58 +010046 * @param[in] ctx Graph context to be used
Anthony Barbier2a07e182017-08-04 18:20:27 +010047 * @param[in] input Input tensor of the node
48 * @param[in] output Output tensor of the node
49 */
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010050 virtual std::unique_ptr<arm_compute::IFunction> instantiate_node(GraphContext &ctx, ITensorObject *input, ITensorObject *output) = 0;
Georgios Pinitasff421f22017-10-04 16:53:58 +010051 /** Override the existing target hint
Anthony Barbier2a07e182017-08-04 18:20:27 +010052 *
53 * @note If the input is DONT_CARE then the method has to pick a technology,
54 * else it can accept the hint or override it (But not with DONT_CARE)
55 *
Georgios Pinitasff421f22017-10-04 16:53:58 +010056 * @param[in] target_hint Target hint to be considered
Anthony Barbier2a07e182017-08-04 18:20:27 +010057 *
Georgios Pinitasff421f22017-10-04 16:53:58 +010058 * @return The updated target hint
Anthony Barbier2a07e182017-08-04 18:20:27 +010059 */
Georgios Pinitasff421f22017-10-04 16:53:58 +010060 TargetHint override_target_hint(TargetHint target_hint) const;
Anthony Barbier2a07e182017-08-04 18:20:27 +010061
Anthony Barbier2a07e182017-08-04 18:20:27 +010062protected:
Georgios Pinitasff421f22017-10-04 16:53:58 +010063 /** Interface to be implement that override the hints
Anthony Barbier2a07e182017-08-04 18:20:27 +010064 *
Georgios Pinitasff421f22017-10-04 16:53:58 +010065 * @param[in] hints Hints to be considered
Anthony Barbier2a07e182017-08-04 18:20:27 +010066 *
Georgios Pinitasff421f22017-10-04 16:53:58 +010067 * @return The updated hints
Anthony Barbier2a07e182017-08-04 18:20:27 +010068 */
Georgios Pinitasff421f22017-10-04 16:53:58 +010069 virtual GraphHints node_override_hints(GraphHints hints) const;
Anthony Barbier2a07e182017-08-04 18:20:27 +010070
71protected:
Georgios Pinitasff421f22017-10-04 16:53:58 +010072 TargetHint _target_hint{ TargetHint::DONT_CARE };
Anthony Barbier2a07e182017-08-04 18:20:27 +010073};
74} // namespace graph
75} // namespace arm_compute
76#endif /* __ARM_COMPUTE_GRAPH_INODE_H__ */