blob: 75c2b1f5289e8f065e7186a3a94523e78f31d8ba [file] [log] [blame]
SiCong Lif44bbc52022-08-29 18:25:51 +01001/*
Viet-Hoa Do3fcf3dc2023-05-17 15:17:48 +01002 * Copyright (c) 2022-2023 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 */
24#ifndef ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_GPUWORKLOADSKETCH
25#define ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_GPUWORKLOADSKETCH
26
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);
56 /** Destructor */
57 ~GpuWorkloadSketch();
58 /** Get the implementation */
59 Implementation &implementation();
60 /** Get the implementation */
61 const Implementation &implementation() const;
62 /** Get the gpu workload context of this sketch */
63 const GpuWorkloadContext *gpu_context() const;
SiCong Lif44bbc52022-08-29 18:25:51 +010064
65private:
SiCong Lif44bbc52022-08-29 18:25:51 +010066 std::unique_ptr<Implementation> _impl; /**< Internal opaque implementation*/
67};
68
69} // namespace dynamic_fusion
70} // namespace experimental
71} // namespace arm_compute
72#endif /* ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_GPUWORKLOADSKETCH */