blob: 9c0ce6de028071316ebc30fd4aae9bf3b41362f1 [file] [log] [blame]
Viet-Hoa Do98aca0f2023-03-02 17:43:45 +00001/*
2 * Copyright (c) 2023 Arm Limited.
3 *
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
25#ifndef ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_OPERATORS_GPUTANH
26#define ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_OPERATORS_GPUTANH
27
28#include "arm_compute/core/Types.h"
29
30namespace arm_compute
31{
32namespace experimental
33{
34namespace dynamic_fusion
35{
36/** Forward declaration */
37class GpuWorkloadContext;
38class GpuWorkloadSketch;
39
40/** Operator interface. */
41class GpuTanh final
42{
43public:
44 /** Create an operator and fuse it into the workload sketch.
45 * @note If @ref validate_op() fails, the creation also fails and may throw an error.
46 * @note If @ref validate_op() fails, @p sketch remains unchanged and valid.
47 *
48 * Valid data type configurations:
49 * |src |dst |
50 * |:--------------|:--------------|
51 * |F16 |F16 |
52 * |F32 |F32 |
53 *
54 * Valid data layouts:
55 * - All
56 *
57 * @param[in, out] sketch Workload sketch into which the operator will be fused
58 * @param[in] src Source tensor info. Data types supported: F16/F32.
59 *
60 * @return Pointer for the destination tensor info
61 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010062 static ITensorInfo *create_op(GpuWorkloadSketch &sketch, ITensorInfo *src);
Viet-Hoa Do98aca0f2023-03-02 17:43:45 +000063
64 /** Check if the operator configuration is supported, irrespective of fusion
65 *
66 * @param[in] context Workload context within which the operator is running
67 * @param[in] src Source tensor info. Data types supported: F16/F32.
68 *
69 * @return Status
70 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010071 static Status is_supported_op(const GpuWorkloadContext &context, const ITensorInfo *src);
Viet-Hoa Do98aca0f2023-03-02 17:43:45 +000072
73 /** Validate the operator and check if it can be fused into the workload sketch.
74 *
75 * Parameters are similar to @ref GpuTanh::create_op()
76 *
77 * @return Status
78 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079 static Status validate_op(const GpuWorkloadSketch &sketch, const ITensorInfo *src);
Viet-Hoa Do98aca0f2023-03-02 17:43:45 +000080};
81
82} // namespace dynamic_fusion
83} // namespace experimental
84} // namespace arm_compute
85
86#endif //ARM_COMPUTE_DYNAMIC_FUSION_SKETCH_GPU_OPERATORS_GPUTANH