blob: 1829c71fefe255fa5362338eeba346e60ada2534 [file] [log] [blame]
Kurtis Charnock2963a6f2019-11-15 11:53:32 +00001/*
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +00002 * Copyright (c) 2019-2021 Arm Limited.
Kurtis Charnock2963a6f2019-11-15 11:53:32 +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 */
24#ifndef ARM_COMPUTE_NEFILL_H
25#define ARM_COMPUTE_NEFILL_H
26
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000027#include "arm_compute/core/PixelValue.h"
28#include "arm_compute/core/Types.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010029#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000030
31#include <memory>
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000032
33namespace arm_compute
34{
35class ITensor;
36
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000037/** Basic function to run @ref cpu::kernels::CpuFillKernel */
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000038class NEFill : public IFunction
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000039{
40public:
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000041 /** Default Constructor */
42 NEFill();
43 /** Default Destructor */
44 ~NEFill();
45 /** Prevent instances of this class from being copied (As this class contains pointers) */
46 NEFill(const NEFill &) = delete;
47 /** Default move constructor */
48 NEFill(NEFill &&);
49 /** Prevent instances of this class from being copied (As this class contains pointers) */
50 NEFill &operator=(const NEFill &) = delete;
51 /** Default move assignment operator */
52 NEFill &operator=(NEFill &&);
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000053 /** Initialize the function
54 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010055 * Valid data layouts:
56 * - All
57 *
58 * Valid data type configurations:
59 * |src |dst |
60 * |:------|:------|
61 * |All |All |
62 *
Georgios Pinitas33843562019-12-10 13:33:18 +000063 * @param[in,out] tensor Source tensor. Data types supported: All
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000064 * @param[in] constant_value Constant value to use to fill tensor.
65 */
66 void configure(ITensor *tensor, PixelValue constant_value);
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000067
68 // Inherited methods overridden
69 void run() override;
70
71private:
72 struct Impl;
73 std::unique_ptr<Impl> _impl;
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000074};
75} // namespace arm_compute
76#endif /*ARM_COMPUTE_FILL_H */