blob: 19694230742df5ce51c46c368f61f0960f4d56da [file] [log] [blame]
Anthony Barbier2a07e182017-08-04 18:20:27 +01001/*
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier2a07e182017-08-04 18:20:27 +01003 *
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;
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +000061 /** Method to check if the node supports in-place operations.
62 *
63 * @return True if the node supports in-place operations, false otherwise.
64 */
65 virtual bool supports_in_place() const;
66 /** Set the value of the _supports_in_place attribute.
67 *
68 * @param[in] value Boolean value to assign to _supports_in_place.
69 */
70 void set_supports_in_place(bool value);
Anthony Barbier2a07e182017-08-04 18:20:27 +010071
Anthony Barbier2a07e182017-08-04 18:20:27 +010072protected:
Georgios Pinitasff421f22017-10-04 16:53:58 +010073 /** Interface to be implement that override the hints
Anthony Barbier2a07e182017-08-04 18:20:27 +010074 *
Georgios Pinitasff421f22017-10-04 16:53:58 +010075 * @param[in] hints Hints to be considered
Anthony Barbier2a07e182017-08-04 18:20:27 +010076 *
Georgios Pinitasff421f22017-10-04 16:53:58 +010077 * @return The updated hints
Anthony Barbier2a07e182017-08-04 18:20:27 +010078 */
Georgios Pinitasff421f22017-10-04 16:53:58 +010079 virtual GraphHints node_override_hints(GraphHints hints) const;
Anthony Barbier2a07e182017-08-04 18:20:27 +010080
81protected:
Georgios Pinitasff421f22017-10-04 16:53:58 +010082 TargetHint _target_hint{ TargetHint::DONT_CARE };
Michele Di Giorgiodde9ec92018-02-13 15:24:04 +000083 bool _supports_in_place{ false };
Anthony Barbier2a07e182017-08-04 18:20:27 +010084};
85} // namespace graph
86} // namespace arm_compute
87#endif /* __ARM_COMPUTE_GRAPH_INODE_H__ */