blob: ae68bf45a28d4d67328a3ba9740ea60165f2bc92 [file] [log] [blame]
Georgios Pinitas0c29cd32017-10-18 17:29: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_OPERATION_REGISTRY_H__
25#define __ARM_COMPUTE_GRAPH_OPERATION_REGISTRY_H__
26
27#include "arm_compute/graph/IOperation.h"
28#include "arm_compute/graph/Types.h"
29#include "support/ToolchainSupport.h"
30
31#include <map>
32#include <memory>
33#include <string>
34
35namespace arm_compute
36{
37namespace graph
38{
39/** Registry holding all the supported operations */
40class OperationRegistry
41{
42public:
43 /** Gets operation registry instance
44 *
45 * @return Operation registry instance
46 */
47 static OperationRegistry &get();
48 /** Finds an operation in the registry
49 *
Georgios Pinitas407c3e62017-10-25 18:26:46 +010050 * @param[in] operation Type of the operation to find
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010051 * @param[in] target Target of the operation
52 *
53 * @return Pointer to the operation functor if found, else nullptr
54 */
Georgios Pinitas407c3e62017-10-25 18:26:46 +010055 IOperation *find_operation(OperationType operation, TargetHint target);
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010056 /** Checks if an operation for a given target exists
57 *
Georgios Pinitas407c3e62017-10-25 18:26:46 +010058 * @param[in] operation Operation type
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010059 * @param[in] target Execution target
60 *
61 * @return True if exists else false
62 */
Georgios Pinitas407c3e62017-10-25 18:26:46 +010063 bool contains(OperationType operation, TargetHint target) const;
64 /** Registers an operation to the registry
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010065 *
Georgios Pinitas407c3e62017-10-25 18:26:46 +010066 * @param operation Operation to register
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010067 */
68 template <typename T>
Georgios Pinitas407c3e62017-10-25 18:26:46 +010069 void add_operation(OperationType operation);
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010070
71private:
72 /** Default Constructor */
73 OperationRegistry();
74
75private:
Georgios Pinitas407c3e62017-10-25 18:26:46 +010076 std::map<OperationType, std::vector<std::unique_ptr<IOperation>>> _registered_ops;
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010077};
78
79template <typename T>
Georgios Pinitas407c3e62017-10-25 18:26:46 +010080inline void OperationRegistry::add_operation(OperationType operation)
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010081{
Georgios Pinitas407c3e62017-10-25 18:26:46 +010082 _registered_ops[operation].emplace_back(support::cpp14::make_unique<T>());
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010083}
84} // namespace graph
85} // namespace arm_compute
86#endif /* __ARM_COMPUTE_GRAPH_OPERATION_REGISTRY_H__ */