blob: e923ce33e1ec4f8a2c5ef090d7a69b606e574a55 [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
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000027#include "arm_compute/runtime/IFunction.h"
28
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000029#include "arm_compute/core/PixelValue.h"
30#include "arm_compute/core/Types.h"
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000031
32#include <memory>
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000033
34namespace arm_compute
35{
36class ITensor;
37
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000038/** Basic function to run @ref cpu::kernels::CpuFillKernel */
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000039class NEFill : public IFunction
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000040{
41public:
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000042 /** Default Constructor */
43 NEFill();
44 /** Default Destructor */
45 ~NEFill();
46 /** Prevent instances of this class from being copied (As this class contains pointers) */
47 NEFill(const NEFill &) = delete;
48 /** Default move constructor */
49 NEFill(NEFill &&);
50 /** Prevent instances of this class from being copied (As this class contains pointers) */
51 NEFill &operator=(const NEFill &) = delete;
52 /** Default move assignment operator */
53 NEFill &operator=(NEFill &&);
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000054 /** Initialize the function
55 *
Sheri Zhanga47dcc22021-04-22 14:41:12 +010056 * Valid data layouts:
57 * - All
58 *
59 * Valid data type configurations:
60 * |src |dst |
61 * |:------|:------|
62 * |All |All |
63 *
Georgios Pinitas33843562019-12-10 13:33:18 +000064 * @param[in,out] tensor Source tensor. Data types supported: All
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000065 * @param[in] constant_value Constant value to use to fill tensor.
66 */
67 void configure(ITensor *tensor, PixelValue constant_value);
Georgios Pinitas0f7ef8a2021-01-10 04:23:52 +000068
69 // Inherited methods overridden
70 void run() override;
71
72private:
73 struct Impl;
74 std::unique_ptr<Impl> _impl;
Kurtis Charnock2963a6f2019-11-15 11:53:32 +000075};
76} // namespace arm_compute
77#endif /*ARM_COMPUTE_FILL_H */