blob: fb68dbbecfd2224cb0b335bac595b286a82975b0 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2016-2021 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_IFUNCTION_H
25#define ARM_COMPUTE_IFUNCTION_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27namespace arm_compute
28{
29/** Base class for all functions */
30class IFunction
31{
32public:
Georgios Pinitase0437672018-05-02 14:07:55 +010033 /** Destructor */
34 virtual ~IFunction() = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035 /** Run the kernels contained in the function
36 *
Michele Di Giorgio33f41fa2021-03-09 14:09:08 +000037 * For CPU kernels:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038 * - Multi-threading is used for the kernels which are parallelisable.
39 * - By default std::thread::hardware_concurrency() threads are used.
40 *
41 * @note @ref CPPScheduler::set_num_threads() can be used to manually set the number of threads
42 *
43 * For OpenCL kernels:
44 * - All the kernels are enqueued on the queue associated with CLScheduler.
45 * - The queue is then flushed.
46 *
47 * @note The function will not block until the kernels are executed. It is the user's responsibility to wait.
Georgios Pinitase0437672018-05-02 14:07:55 +010048 * @note Will call prepare() on first run if hasn't been done
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 */
50 virtual void run() = 0;
Georgios Pinitase0437672018-05-02 14:07:55 +010051 /** Prepare the function for executing
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052 *
Georgios Pinitase0437672018-05-02 14:07:55 +010053 * Any one off pre-processing step required by the function is handled here
54 *
55 * @note Prepare stage might not need all the function's buffers' backing memory to be available in order to execute
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 */
Georgios Pinitase0437672018-05-02 14:07:55 +010057 virtual void prepare()
58 {
59 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010060};
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000062#endif /*ARM_COMPUTE_IFUNCTION_H */