blob: 8e5fe8cde5120ba12a59b980718a5128e39cc161 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +01002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitasd8734b52017-12-22 15:27:52 +00003 *
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_CLDEVICEBACKEND_H__
25#define __ARM_COMPUTE_GRAPH_CLDEVICEBACKEND_H__
Georgios Pinitasd8734b52017-12-22 15:27:52 +000026
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/IDeviceBackend.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000028
29#include "arm_compute/runtime/CL/CLBufferAllocator.h"
30#include "arm_compute/runtime/CL/CLTuner.h"
31
32namespace arm_compute
33{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010034namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000035{
36namespace backends
37{
38/** OpenCL device backend */
39class CLDeviceBackend final : public IDeviceBackend
40{
41public:
42 /** Default Constructor */
43 CLDeviceBackend();
44 /** Destructor */
45 ~CLDeviceBackend();
46 /** Switchs on or off the kernel tuning
47 *
48 * @note When true the tuner set is used, if no tuner is set a new default one is created
49 *
50 * @param[in] enable_tuning Enables tuning if false else true
51 */
52 void set_kernel_tuning(bool enable_tuning);
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010053 /** Set kernel tuning mode
54 *
55 * @param[in] tuning_mode Indicates how exhaustive the search for the optimal LWS should be while tuning
56 */
57 void set_kernel_tuning_mode(CLTunerMode tuning_mode);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000058
59 // Inherited overridden methods
60 void initialize_backend() override;
61 void setup_backend_context(GraphContext &ctx) override;
Anthony Barbierb6eb3532018-08-08 13:20:04 +010062 void release_backend_context(GraphContext &ctx) override;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010063 bool is_backend_supported() override;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010064 IAllocator *backend_allocator() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000065 std::unique_ptr<ITensorHandle> create_tensor(const Tensor &tensor) override;
Georgios Pinitasee33ea52018-03-08 16:01:29 +000066 std::unique_ptr<ITensorHandle> create_subtensor(ITensorHandle *parent, TensorShape shape, Coordinates coords, bool extend_parent) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000067 std::unique_ptr<arm_compute::IFunction> configure_node(INode &node, GraphContext &ctx) override;
Georgios Pinitas28705162018-03-21 20:10:53 +000068 Status validate_node(INode &node) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000069 std::shared_ptr<arm_compute::IMemoryManager> create_memory_manager(MemoryManagerAffinity affinity) override;
Michalis Spyrou1a569a32019-09-10 17:20:34 +010070 std::shared_ptr<arm_compute::IWeightsManager> create_weights_manager() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000071
72private:
Pablo Tellodb8485a2019-09-24 11:03:47 +010073 int _context_count; /**< Counts how many contexts are currently using the backend */
74 CLTuner _tuner; /**< CL kernel tuner */
75 std::unique_ptr<CLBufferAllocator> _allocator; /**< CL buffer affinity allocator */
76 std::string _tuner_file; /**< Filename to load/store the tuner's values from */
Georgios Pinitasd8734b52017-12-22 15:27:52 +000077};
78} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010079} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000080} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010081#endif //__ARM_COMPUTE_GRAPH_CLDEVICEBACKEND_H__