DPNP C++ backend kernel library 0.19.0dev3
Data Parallel Extension for NumPy*
Loading...
Searching...
No Matches
dpnp_iface_fptr.hpp
1//*****************************************************************************
2// Copyright (c) 2016-2025, Intel Corporation
3// All rights reserved.
4//
5// Redistribution and use in source and binary forms, with or without
6// modification, are permitted provided that the following conditions are met:
7// - Redistributions of source code must retain the above copyright notice,
8// this list of conditions and the following disclaimer.
9// - Redistributions in binary form must reproduce the above copyright notice,
10// this list of conditions and the following disclaimer in the documentation
11// and/or other materials provided with the distribution.
12//
13// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
14// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
17// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23// THE POSSIBILITY OF SUCH DAMAGE.
24//*****************************************************************************
25
26/*
27 * This header file is for interface Cython with C++.
28 * It should not contains any backend specific headers (like SYCL or math
29 * library) because all included headers will be exposed in Cython compilation
30 * procedure
31 *
32 * We would like to avoid backend specific things in higher level Cython
33 * modules. Any backend interface functions and types should be defined here.
34 *
35 * Also, this file should contains documentation on functions and types
36 * which are used in the interface
37 */
38
39#pragma once
40#ifndef BACKEND_IFACE_FPTR_H // Cython compatibility
41#define BACKEND_IFACE_FPTR_H
42
43#include <dpnp_iface.hpp>
44
59enum class DPNPFuncName : size_t
60{
194};
195
214
220INP_DLLEXPORT
221size_t operator-(DPNPFuncType lhs, DPNPFuncType rhs);
222
230typedef struct DPNPFuncData
231{
232 DPNPFuncData(const DPNPFuncType gen_type,
233 void *gen_ptr,
234 const DPNPFuncType type_no_fp64,
235 void *ptr_no_fp64)
236 : return_type(gen_type), ptr(gen_ptr),
238 {
239 }
240 DPNPFuncData(const DPNPFuncType gen_type, void *gen_ptr)
241 : DPNPFuncData(gen_type, gen_ptr, DPNPFuncType::DPNP_FT_NONE, nullptr)
242 {
243 }
245
248 void *ptr;
254
269INP_DLLEXPORT
271 DPNPFuncName name,
272 DPNPFuncType first_type,
274
290INP_DLLEXPORT
292 DPNPFuncType &result_type,
293 DPNPFuncName name,
294 DPNPFuncType first_type,
296
297#endif // BACKEND_IFACE_FPTR_H
DPNPFuncData_t get_dpnp_function_ptr(DPNPFuncName name, DPNPFuncType first_type, DPNPFuncType second_type=DPNPFuncType::DPNP_FT_NONE)
get runtime pointer to selected function
void * get_dpnp_function_ptr1(DPNPFuncType &result_type, DPNPFuncName name, DPNPFuncType first_type, DPNPFuncType second_type=DPNPFuncType::DPNP_FT_NONE)
get runtime pointer to selected function
struct DPNPFuncData DPNPFuncData_t
Contains information about the C++ backend function.
DPNPFuncName
Function names to request via this interface.
DPNPFuncType
Template types which are used in this interface.
@ DPNP_FN_RNG_MULTIVARIATE_NORMAL
@ DPNP_FN_RNG_NONCENTRAL_CHISQUARE_EXT
@ DPNP_FN_RNG_LOGISTIC_EXT
@ DPNP_FN_RNG_STANDARD_EXPONENTIAL
@ DPNP_FN_RNG_STANDARD_T_EXT
@ DPNP_FN_RNG_HYPERGEOMETRIC_EXT
@ DPNP_FN_RNG_STANDARD_CAUCHY_EXT
@ DPNP_FN_RNG_STANDARD_EXPONENTIAL_EXT
@ DPNP_FN_RNG_WEIBULL_EXT
@ DPNP_FN_RNG_MULTIVARIATE_NORMAL_EXT
@ DPNP_FN_RNG_STANDARD_T
@ DPNP_FN_RNG_BINOMIAL_EXT
@ DPNP_FN_RNG_POISSON_EXT
@ DPNP_FN_RNG_MULTINOMIAL_EXT
@ DPNP_FN_RNG_GAUSSIAN_EXT
@ DPNP_FN_RNG_CHISQUARE_EXT
@ DPNP_FN_RNG_SHUFFLE_EXT
@ DPNP_FN_RNG_GEOMETRIC_EXT
@ DPNP_FN_RNG_NEGATIVE_BINOMIAL_EXT
@ DPNP_FN_RNG_EXPONENTIAL
@ DPNP_FN_RNG_VONMISES_EXT
@ DPNP_FN_RNG_GUMBEL_EXT
@ DPNP_FN_RNG_EXPONENTIAL_EXT
@ DPNP_FN_RNG_HYPERGEOMETRIC
@ DPNP_FN_RNG_STANDARD_GAMMA
@ DPNP_FN_RNG_NONCENTRAL_CHISQUARE
@ DPNP_FN_RNG_NEGATIVE_BINOMIAL
@ DPNP_FN_RNG_STANDARD_CAUCHY
@ DPNP_FN_RNG_STANDARD_NORMAL
@ DPNP_FN_RNG_LAPLACE_EXT
@ DPNP_FN_RNG_LOGNORMAL_EXT
@ DPNP_FN_RNG_RAYLEIGH_EXT
@ DPNP_FN_RNG_TRIANGULAR
@ DPNP_FN_RNG_UNIFORM_EXT
@ DPNP_FN_RNG_STANDARD_GAMMA_EXT
@ DPNP_FN_RNG_NORMAL_EXT
@ DPNP_FN_RNG_TRIANGULAR_EXT
@ DPNP_FN_RNG_MULTINOMIAL
@ DPNP_FN_RNG_PARETO_EXT
Contains information about the C++ backend function.
DPNPFuncType return_type_no_fp64
DPNPFuncType return_type