blob: 63674ad794f23970cc7ed125ceed1eb18fc041ec [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
SiCong Li4841c972021-02-03 12:17:35 +00002 * Copyright (c) 2018-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#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"
SiCong Li4841c972021-02-03 12:17:35 +000030#include "arm_compute/runtime/CL/CLGEMMHeuristicsHandle.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000031#include "arm_compute/runtime/CL/CLTuner.h"
Giorgio Arena9c67d382021-08-20 15:24:03 +010032#include "arm_compute/runtime/CL/CLTypes.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000033
34namespace arm_compute
35{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010036namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000037{
38namespace backends
39{
40/** OpenCL device backend */
41class CLDeviceBackend final : public IDeviceBackend
42{
43public:
44 /** Default Constructor */
45 CLDeviceBackend();
46 /** Destructor */
47 ~CLDeviceBackend();
48 /** Switchs on or off the kernel tuning
49 *
50 * @note When true the tuner set is used, if no tuner is set a new default one is created
51 *
52 * @param[in] enable_tuning Enables tuning if false else true
53 */
54 void set_kernel_tuning(bool enable_tuning);
Vidhya Sudhan Loganathan050471e2019-04-25 09:27:24 +010055 /** Set kernel tuning mode
56 *
57 * @param[in] tuning_mode Indicates how exhaustive the search for the optimal LWS should be while tuning
58 */
59 void set_kernel_tuning_mode(CLTunerMode tuning_mode);
Georgios Pinitasd8734b52017-12-22 15:27:52 +000060
61 // Inherited overridden methods
62 void initialize_backend() override;
63 void setup_backend_context(GraphContext &ctx) override;
Anthony Barbierb6eb3532018-08-08 13:20:04 +010064 void release_backend_context(GraphContext &ctx) override;
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010065 bool is_backend_supported() override;
Georgios Pinitas3d1489d2018-05-03 20:47:16 +010066 IAllocator *backend_allocator() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000067 std::unique_ptr<ITensorHandle> create_tensor(const Tensor &tensor) override;
Georgios Pinitasee33ea52018-03-08 16:01:29 +000068 std::unique_ptr<ITensorHandle> create_subtensor(ITensorHandle *parent, TensorShape shape, Coordinates coords, bool extend_parent) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000069 std::unique_ptr<arm_compute::IFunction> configure_node(INode &node, GraphContext &ctx) override;
Georgios Pinitas28705162018-03-21 20:10:53 +000070 Status validate_node(INode &node) override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000071 std::shared_ptr<arm_compute::IMemoryManager> create_memory_manager(MemoryManagerAffinity affinity) override;
Michalis Spyrou1a569a32019-09-10 17:20:34 +010072 std::shared_ptr<arm_compute::IWeightsManager> create_weights_manager() override;
Giorgio Arena9c67d382021-08-20 15:24:03 +010073 void sync() override;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000074
75private:
SiCong Li4841c972021-02-03 12:17:35 +000076 int _context_count; /**< Counts how many contexts are currently using the backend */
77 CLTuner _tuner; /**< CL kernel tuner */
78 CLGEMMHeuristicsHandle _gemm_heuristics; /**< GEMM heuristics */
79 std::unique_ptr<CLBufferAllocator> _allocator; /**< CL buffer affinity allocator */
80 std::string _tuner_file; /**< Filename to load/store the tuner's values from */
Michalis Spyrou402740d2021-04-20 11:26:21 +010081 CLBackendType _backend_type; /**< OpenCL backend type to use */
Georgios Pinitasd8734b52017-12-22 15:27:52 +000082};
83} // namespace backends
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010084} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000085} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000086#endif //ARM_COMPUTE_GRAPH_CLDEVICEBACKEND_H