blob: 1c738bd060a7c0035dbd2ee7feea38d2ae6653ec [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_SKETCH_GPU_GPUWORKLOADSKETCH_H
25#define ACL_ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_GPUWORKLOADSKETCH_H
SiCong Lif44bbc52022-08-29 18:25:51 +010026
SiCong Lif44bbc52022-08-29 18:25:51 +010027#include "arm_compute/dynamic_fusion/sketch/gpu/GpuWorkloadContext.h"
28
29#include <memory>
30
31namespace arm_compute
32{
33namespace experimental
34{
35namespace dynamic_fusion
36{
37/** A descriptor of a workload of operators
38 *
39 * A "workload" is a basic unit of computation to schedule and perform. It contains one or more operators that can be "fused" together.
40 * Note that a workload may still contain multiple kernels.
41 */
42class GpuWorkloadSketch
43{
44public:
45 /** Global context used for the creation of a workload */
46 using Context = GpuWorkloadContext;
47 /** Internal opaque implementation */
48 class Implementation;
49
50public:
51 /** Constructor
52 *
53 * @param[in] context Gpu context for the creation of a workload
54 */
55 explicit GpuWorkloadSketch(GpuWorkloadContext *context);
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000056
SiCong Lif44bbc52022-08-29 18:25:51 +010057 /** Destructor */
58 ~GpuWorkloadSketch();
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000059
60 /** Move constructor */
61 GpuWorkloadSketch(GpuWorkloadSketch &&);
62
63 /** Move assignment */
64 GpuWorkloadSketch &operator=(GpuWorkloadSketch &&);
65
SiCong Lif44bbc52022-08-29 18:25:51 +010066 /** Get the implementation */
67 Implementation &implementation();
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000068
SiCong Lif44bbc52022-08-29 18:25:51 +010069 /** Get the implementation */
70 const Implementation &implementation() const;
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000071
SiCong Lif44bbc52022-08-29 18:25:51 +010072 /** Get the gpu workload context of this sketch */
73 const GpuWorkloadContext *gpu_context() const;
SiCong Lif44bbc52022-08-29 18:25:51 +010074
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000075 /** Get the gpu workload context of this sketch */
76 GpuWorkloadContext *gpu_context();
77
SiCong Lif44bbc52022-08-29 18:25:51 +010078private:
SiCong Lif44bbc52022-08-29 18:25:51 +010079 std::unique_ptr<Implementation> _impl; /**< Internal opaque implementation*/
80};
81
82} // namespace dynamic_fusion
83} // namespace experimental
84} // namespace arm_compute
Viet-Hoa Dofdf56fb2024-01-18 16:10:46 +000085#endif // ACL_ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_GPUWORKLOADSKETCH_H