DPNP C++ backend kernel library 0.20.0dev0
Data Parallel Extension for NumPy*
Loading...
Searching...
No Matches
dpnp_iface_fptr.hpp
1//*****************************************************************************
2// Copyright (c) 2016, 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// - Neither the name of the copyright holder nor the names of its contributors
13// may be used to endorse or promote products derived from this software
14// without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
26// THE POSSIBILITY OF SUCH DAMAGE.
27//*****************************************************************************
28
29/*
30 * This header file is for interface Cython with C++.
31 * It should not contains any backend specific headers (like SYCL or math
32 * library) because all included headers will be exposed in Cython compilation
33 * procedure
34 *
35 * We would like to avoid backend specific things in higher level Cython
36 * modules. Any backend interface functions and types should be defined here.
37 *
38 * Also, this file should contains documentation on functions and types
39 * which are used in the interface
40 */
41
42#pragma once
43#ifndef BACKEND_IFACE_FPTR_H // Cython compatibility
44#define BACKEND_IFACE_FPTR_H
45
46#include <dpnp_iface.hpp>
47
62enum class DPNPFuncName : size_t
63{
197};
198
217
223INP_DLLEXPORT
224size_t operator-(DPNPFuncType lhs, DPNPFuncType rhs);
225
233typedef struct DPNPFuncData
234{
235 DPNPFuncData(const DPNPFuncType gen_type,
236 void *gen_ptr,
237 const DPNPFuncType type_no_fp64,
238 void *ptr_no_fp64)
239 : return_type(gen_type), ptr(gen_ptr),
241 {
242 }
243 DPNPFuncData(const DPNPFuncType gen_type, void *gen_ptr)
244 : DPNPFuncData(gen_type, gen_ptr, DPNPFuncType::DPNP_FT_NONE, nullptr)
245 {
246 }
248
251 void *ptr;
257
272INP_DLLEXPORT
274 DPNPFuncName name,
275 DPNPFuncType first_type,
277
293INP_DLLEXPORT
295 DPNPFuncType &result_type,
296 DPNPFuncName name,
297 DPNPFuncType first_type,
299
300#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