bugfix: CLDeconvolutionLayer::validate fails if bias==NULL (#439)
[platform/upstream/armcl.git] / arm_compute / graph / OperationRegistry.h
1 /*
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
35 namespace arm_compute
36 {
37 namespace graph
38 {
39 /** Registry holding all the supported operations */
40 class OperationRegistry
41 {
42 public:
43     /** Gets operation registry instance
44      *
45      * @return Operation registry instance
46      */
47     static OperationRegistry &get();
48     /** Finds an operation in the registry
49      *
50      * @param[in] operation Type of the operation to find
51      * @param[in] target    Target of the operation
52      *
53      * @return Pointer to the operation functor if found, else nullptr
54      */
55     IOperation *find_operation(OperationType operation, TargetHint target);
56     /** Checks if an operation for a given target exists
57      *
58      * @param[in] operation Operation type
59      * @param[in] target    Execution target
60      *
61      * @return True if exists else false
62      */
63     bool contains(OperationType operation, TargetHint target) const;
64     /** Registers an operation to the registry
65      *
66      * @param operation Operation to register
67      */
68     template <typename T>
69     void add_operation(OperationType operation);
70
71 private:
72     /** Default Constructor */
73     OperationRegistry();
74
75 private:
76     std::map<OperationType, std::vector<std::unique_ptr<IOperation>>> _registered_ops;
77 };
78
79 template <typename T>
80 inline void OperationRegistry::add_operation(OperationType operation)
81 {
82     _registered_ops[operation].emplace_back(support::cpp14::make_unique<T>());
83 }
84 } // namespace graph
85 } // namespace arm_compute
86 #endif /* __ARM_COMPUTE_GRAPH_OPERATION_REGISTRY_H__ */