DPNP C++ backend kernel library 0.20.0dev0
Data Parallel Extension for NumPy*
Loading...
Searching...
No Matches
dpnp_iface.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_H // Cython compatibility
44#define BACKEND_IFACE_H
45
46#include <cstdint>
47#include <vector>
48
49#ifdef _WIN32
50#define INP_DLLEXPORT __declspec(dllexport)
51#else
52#define INP_DLLEXPORT
53#endif
54
55#if defined(_MSC_VER)
56#include <BaseTsd.h>
57typedef SSIZE_T ssize_t;
58#endif
59
60typedef ssize_t shape_elem_type;
61
62#include <dpctl_sycl_interface.h>
63
64#include "dpnp_iface_random.hpp"
65
79INP_DLLEXPORT size_t dpnp_queue_is_cpu_c();
80
92INP_DLLEXPORT char *dpnp_memory_alloc_c(DPCTLSyclQueueRef q_ref,
93 size_t size_in_bytes);
94INP_DLLEXPORT char *dpnp_memory_alloc_c(size_t size_in_bytes);
95
96INP_DLLEXPORT void dpnp_memory_free_c(DPCTLSyclQueueRef q_ref, void *ptr);
97INP_DLLEXPORT void dpnp_memory_free_c(void *ptr);
98
99INP_DLLEXPORT void dpnp_memory_memcpy_c(DPCTLSyclQueueRef q_ref,
100 void *dst,
101 const void *src,
102 size_t size_in_bytes);
103INP_DLLEXPORT void
104 dpnp_memory_memcpy_c(void *dst, const void *src, size_t size_in_bytes);
105
119template <typename _DataType>
120INP_DLLEXPORT DPCTLSyclEventRef
121 dpnp_partition_c(DPCTLSyclQueueRef q_ref,
122 void *array,
123 void *array2,
124 void *result,
125 const size_t kth,
126 const shape_elem_type *shape,
127 const size_t ndim,
128 const DPCTLEventVectorRef dep_event_vec_ref);
129
130template <typename _DataType>
131INP_DLLEXPORT void dpnp_partition_c(void *array,
132 void *array2,
133 void *result,
134 const size_t kth,
135 const shape_elem_type *shape,
136 const size_t ndim);
137
148template <typename _DataType>
149INP_DLLEXPORT DPCTLSyclEventRef
150 dpnp_initval_c(DPCTLSyclQueueRef q_ref,
151 void *result1,
152 void *value,
153 size_t size,
154 const DPCTLEventVectorRef dep_event_vec_ref);
155
156template <typename _DataType>
157INP_DLLEXPORT void dpnp_initval_c(void *result1, void *value, size_t size);
158
170template <typename _DataType_input, typename _DataType_output>
171INP_DLLEXPORT DPCTLSyclEventRef
172 dpnp_modf_c(DPCTLSyclQueueRef q_ref,
173 void *array1_in,
174 void *result1_out,
175 void *result2_out,
176 size_t size,
177 const DPCTLEventVectorRef dep_event_vec_ref);
178
179template <typename _DataType_input, typename _DataType_output>
180INP_DLLEXPORT void dpnp_modf_c(void *array1_in,
181 void *result1_out,
182 void *result2_out,
183 size_t size);
184
194template <typename _DataType>
195INP_DLLEXPORT DPCTLSyclEventRef
196 dpnp_ones_c(DPCTLSyclQueueRef q_ref,
197 void *result,
198 size_t size,
199 const DPCTLEventVectorRef dep_event_vec_ref);
200
201template <typename _DataType>
202INP_DLLEXPORT void dpnp_ones_c(void *result, size_t size);
203
213template <typename _DataType>
214INP_DLLEXPORT DPCTLSyclEventRef
215 dpnp_ones_like_c(DPCTLSyclQueueRef q_ref,
216 void *result,
217 size_t size,
218 const DPCTLEventVectorRef dep_event_vec_ref);
219
220template <typename _DataType>
221INP_DLLEXPORT void dpnp_ones_like_c(void *result, size_t size);
222
232template <typename _DataType>
233INP_DLLEXPORT DPCTLSyclEventRef
234 dpnp_zeros_c(DPCTLSyclQueueRef q_ref,
235 void *result,
236 size_t size,
237 const DPCTLEventVectorRef dep_event_vec_ref);
238
239template <typename _DataType>
240INP_DLLEXPORT void dpnp_zeros_c(void *result, size_t size);
241
251template <typename _DataType>
252INP_DLLEXPORT DPCTLSyclEventRef
253 dpnp_zeros_like_c(DPCTLSyclQueueRef q_ref,
254 void *result,
255 size_t size,
256 const DPCTLEventVectorRef dep_event_vec_ref);
257
258template <typename _DataType>
259INP_DLLEXPORT void dpnp_zeros_like_c(void *result, size_t size);
260
261#endif // BACKEND_IFACE_H
DPCTLSyclEventRef dpnp_initval_c(DPCTLSyclQueueRef q_ref, void *result1, void *value, size_t size, const DPCTLEventVectorRef dep_event_vec_ref)
implementation of creating filled with value array function
size_t dpnp_queue_is_cpu_c()
SYCL queue device status.
DPCTLSyclEventRef dpnp_zeros_like_c(DPCTLSyclQueueRef q_ref, void *result, size_t size, const DPCTLEventVectorRef dep_event_vec_ref)
Implementation of zeros_like function.
DPCTLSyclEventRef dpnp_ones_c(DPCTLSyclQueueRef q_ref, void *result, size_t size, const DPCTLEventVectorRef dep_event_vec_ref)
Implementation of ones function.
DPCTLSyclEventRef dpnp_ones_like_c(DPCTLSyclQueueRef q_ref, void *result, size_t size, const DPCTLEventVectorRef dep_event_vec_ref)
Implementation of ones_like function.
char * dpnp_memory_alloc_c(DPCTLSyclQueueRef q_ref, size_t size_in_bytes)
SYCL queue memory allocation.
DPCTLSyclEventRef dpnp_modf_c(DPCTLSyclQueueRef q_ref, void *array1_in, void *result1_out, void *result2_out, size_t size, const DPCTLEventVectorRef dep_event_vec_ref)
modf function.
DPCTLSyclEventRef dpnp_zeros_c(DPCTLSyclQueueRef q_ref, void *result, size_t size, const DPCTLEventVectorRef dep_event_vec_ref)
Implementation of zeros function.
DPCTLSyclEventRef dpnp_partition_c(DPCTLSyclQueueRef q_ref, void *array, void *array2, void *result, const size_t kth, const shape_elem_type *shape, const size_t ndim, const DPCTLEventVectorRef dep_event_vec_ref)
Return a partitioned copy of an array.