blob: 1239d5d3ad30c1462cab5c50f9347239a46aeeb0 [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{
Pablo Tellodb8485a2019-09-24 11:03:47 +010034class CLCoreRuntimeContext;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010035namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000036{
37namespace backends
38{
39/** OpenCL device backend */
40class CLDeviceBackend final : public IDeviceBackend
41{
42public:
43 /** Default Constructor */
44 CLDeviceBackend();
45 /** Destructor */
46 ~CLDeviceBackend();
47 /** Switchs on or off the kernel tuning
48 *
49 * @note When true the tuner set is used, if no tuner is set a new default one is created
50 *
51 * @param[in] enable_tuning Enables tuning if false else true
52 */
53 void set_kernel_tuning(bool enable_tuning);
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010054 /** Set kernel tuning mode
55 *
56 * @param[in] tuning_mode Indicates how exhaustive the search for the optimal LWS should be while tuning
57 */
58 void set_kernel_tuning_mode(CLTunerMode tuning_mode);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000059
60 // Inherited overridden methods
61 void initialize_backend() override;
62 void setup_backend_context(GraphContext &ctx) override;
Anthony Barbierb6eb3532018-08-08 13:20:04 +010063 void release_backend_context(GraphContext &ctx) override;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010064 bool is_backend_supported() override;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010065 IAllocator *backend_allocator() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000066 std::unique_ptr<ITensorHandle> create_tensor(const Tensor &tensor) override;
Georgios Pinitasee33ea52018-03-08 16:01:29 +000067 std::unique_ptr<ITensorHandle> create_subtensor(ITensorHandle *parent, TensorShape shape, Coordinates coords, bool extend_parent) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000068 std::unique_ptr<arm_compute::IFunction> configure_node(INode &node, GraphContext &ctx) override;
Georgios Pinitas28705162018-03-21 20:10:53 +000069 Status validate_node(INode &node) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000070 std::shared_ptr<arm_compute::IMemoryManager> create_memory_manager(MemoryManagerAffinity affinity) override;
Michalis Spyrou1a569a32019-09-10 17:20:34 +010071 std::shared_ptr<arm_compute::IWeightsManager> create_weights_manager() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000072
73private:
Pablo Tellodb8485a2019-09-24 11:03:47 +010074 int _context_count; /**< Counts how many contexts are currently using the backend */
75 CLTuner _tuner; /**< CL kernel tuner */
76 std::unique_ptr<CLBufferAllocator> _allocator; /**< CL buffer affinity allocator */
77 std::string _tuner_file; /**< Filename to load/store the tuner's values from */
78 std::unique_ptr<CLCoreRuntimeContext> _legacy_ctx;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000079};
80} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010081} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000082} // namespace arm_compute
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010083#endif //__ARM_COMPUTE_GRAPH_CLDEVICEBACKEND_H__