Lines Matching +full:use +full:- +full:kernel
2 * Copyright (c) 2017-2020, 2022 Arm Limited.
4 * SPDX-License-Identifier: MIT
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
39 /** Tune OpenCL kernel statically
41 * @note Tuning is performed using only kernel and tensor metadata,
44 * @param[in] kernel Kernel to tune
46 virtual void tune_kernel_static(ICLKernel &kernel) = 0;
47 /** Tune OpenCL kernel dynamically
49 …* @note Tuning requires memory to be available on all kernel tensors and objects in order to be pe…
51 * @param[in] kernel Kernel to tune
53 virtual void tune_kernel_dynamic(ICLKernel &kernel) = 0;
54 /** Tune OpenCL kernel dynamically
56 * @param[in] kernel Kernel to tune
57 * @param[in, out] tensors Tensors for the kernel to use
59 virtual void tune_kernel_dynamic(ICLKernel &kernel, ITensorPack &tensors) = 0;