blob: 6b92f1222381737a6d82b6f6e64cb957233a6aaf [file] [log] [blame]
SiCong Lif44bbc52022-08-29 18:25:51 +01001/*
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +00002 * Copyright (c) 2022-2024 Arm Limited.
SiCong Lif44bbc52022-08-29 18:25:51 +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 */
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000024#ifndef ACL_ARM_COMPUTE_DYNAMIC_FUSION_RUNTIME_GPU_CL_CLWORKLOADRUNTIME_H
25#define ACL_ARM_COMPUTE_DYNAMIC_FUSION_RUNTIME_GPU_CL_CLWORKLOADRUNTIME_H
SiCong Lif44bbc52022-08-29 18:25:51 +010026
Ramy Elgammal002e6532023-01-11 18:48:04 +000027#include "arm_compute/core/TensorInfo.h"
SiCong Lif44bbc52022-08-29 18:25:51 +010028#include "arm_compute/dynamic_fusion/sketch/MemoryDescriptor.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010029
SiCong Lif44bbc52022-08-29 18:25:51 +010030#include <map>
31#include <memory>
32
33namespace arm_compute
34{
35/** Forward declaration */
36class CLTensor;
37namespace experimental
38{
39namespace dynamic_fusion
40{
41/** Forward declaration */
42class GpuWorkloadSketch;
43
44/** OpenCL runtime to run a workload
45 */
46class ClWorkloadRuntime
47{
48public:
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000049 /** Default constructor. */
SiCong Lif44bbc52022-08-29 18:25:51 +010050 ClWorkloadRuntime();
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000051
52 /** Destructor */
SiCong Lif44bbc52022-08-29 18:25:51 +010053 ~ClWorkloadRuntime();
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000054
55 /** Move constructor */
56 ClWorkloadRuntime(ClWorkloadRuntime &&);
57
58 /** Move assignment */
59 ClWorkloadRuntime &operator=(ClWorkloadRuntime &&);
60
SiCong Lif44bbc52022-08-29 18:25:51 +010061 /** Configure @ref ClWorkloadRuntime
62 * @note A runtime cannot be re-configured
63 *
64 * @param[in] sketch @ref GpuWorkloadSketch with which to configure
65 */
66 Status configure(const GpuWorkloadSketch &sketch);
67 /** Perform run workload
68 * @note If the runtime is not configured, this method will not perform any action
69 *
70 * @param[in,out] tensors Tensors required by the run workloads
71 *
72 * @return Status If the run is successful
73 */
74 Status run(const std::vector<CLTensor *> &tensors);
75 /** Get auxiliary tensors of the workload and their memory requirement
76 */
Ramy Elgammal002e6532023-01-11 18:48:04 +000077 std::vector<std::tuple<CLTensor *, TensorInfo, AuxMemoryInfo>> get_auxiliary_tensors();
SiCong Lif44bbc52022-08-29 18:25:51 +010078
79private:
80 /** Enqueue prepare workload
81 * @note If the runtime is not configured, this method will not perform any action
82 */
83 void prepare();
84 struct Implementation;
85 std::unique_ptr<Implementation> _impl;
86};
87
88} // namespace dynamic_fusion
89} // namespace experimental
90} // namespace arm_compute
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000091#endif // ACL_ARM_COMPUTE_DYNAMIC_FUSION_RUNTIME_GPU_CL_CLWORKLOADRUNTIME_H