blob: 1831cc2c8b89241e86486b057e980366a568727e [file] [log] [blame]
Georgios Pinitasff421f22017-10-04 16:53:58 +01001/*
Georgios Pinitasd9eb2752018-04-03 13:44:29 +01002 * Copyright (c) 2018 ARM Limited.
Georgios Pinitasff421f22017-10-04 16:53:58 +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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#ifndef __ARM_COMPUTE_GRAPH_GRAPH_CONTEXT_H__
25#define __ARM_COMPUTE_GRAPH_GRAPH_CONTEXT_H__
Georgios Pinitasff421f22017-10-04 16:53:58 +010026
27#include "arm_compute/graph/Types.h"
28
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010029#include "arm_compute/runtime/IMemoryManager.h"
30
31#include <map>
32#include <memory>
33
Georgios Pinitasff421f22017-10-04 16:53:58 +010034namespace arm_compute
35{
36namespace graph
37{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010038/** Contains structs required for memory management */
39struct MemoryManagerContext
Georgios Pinitasff421f22017-10-04 16:53:58 +010040{
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010041 Target target = { Target::UNSPECIFIED }; /**< Target */
42 std::shared_ptr<arm_compute::IMemoryManager> intra_mm = { nullptr }; /**< Intra-function memory manager */
43 std::shared_ptr<arm_compute::IMemoryManager> cross_mm = { nullptr }; /**< Cross-function memory manager */
44 std::shared_ptr<arm_compute::IMemoryGroup> cross_group = { nullptr }; /**< Cross-function memory group */
Georgios Pinitasff421f22017-10-04 16:53:58 +010045};
46
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010047/** Graph context **/
48class GraphContext final
Georgios Pinitasff421f22017-10-04 16:53:58 +010049{
50public:
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010051 /** Constructor */
Georgios Pinitasff421f22017-10-04 16:53:58 +010052 GraphContext();
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010053 /** Prevent instances of this class from being copied (As this class contains pointers) */
54 GraphContext(const GraphContext &) = delete;
55 /** Default move constructor */
56 GraphContext(GraphContext &&) = default;
57 /** Prevent instances of this class from being copied (As this class contains pointers) */
58 GraphContext &operator=(const GraphContext &) = delete;
59 /** Default move assignment operator */
60 GraphContext &operator=(GraphContext &&) = default;
61 /** Graph configuration accessor
Georgios Pinitasff421f22017-10-04 16:53:58 +010062 *
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010063 * @note Every alteration has to be done before graph finalization
Georgios Pinitasff421f22017-10-04 16:53:58 +010064 *
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010065 * @return The graph configuration
Georgios Pinitasff421f22017-10-04 16:53:58 +010066 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010067 const GraphConfig &config() const;
68 /** Sets graph configuration
69 *
70 * @param[in] config Configuration to use
71 */
72 void set_config(const GraphConfig &config);
73 /** Inserts a memory manager context
74 *
75 * @param[in] memory_ctx Memory manage context
76 *
77 * @return If the insertion succeeded else false
78 */
79 bool insert_memory_management_ctx(MemoryManagerContext &&memory_ctx);
80 /** Gets a memory manager context for a given target
81 *
82 * @param[in] target To retrieve the management context
83 *
84 * @return Management context for the target if exists else nullptr
85 */
86 MemoryManagerContext *memory_management_ctx(Target target);
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010087 /** Gets the memory managers map
88 *
89 * @return Memory manager contexts
90 */
91 std::map<Target, MemoryManagerContext> &memory_managers();
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010092 /** Finalizes memory managers in graph context */
93 void finalize();
Georgios Pinitasff421f22017-10-04 16:53:58 +010094
95private:
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010096 GraphConfig _config; /**< Graph configuration */
97 std::map<Target, MemoryManagerContext> _memory_managers; /**< Memory managers for each target */
Georgios Pinitasff421f22017-10-04 16:53:58 +010098};
99} // namespace graph
100} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100101#endif /* __ARM_COMPUTE_GRAPH_GRAPH_CONTEXT_H__ */