-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathzeros_ctor.cpp
More file actions
159 lines (131 loc) · 5.4 KB
/
zeros_ctor.cpp
File metadata and controls
159 lines (131 loc) · 5.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
//*****************************************************************************
// Copyright (c) 2026, Intel Corporation
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// - Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// - Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// - Neither the name of the copyright holder nor the names of its contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//*****************************************************************************
//
//===--------------------------------------------------------------------===//
///
/// \file
/// This file defines functions of dpctl.tensor._tensor_impl extensions
//===--------------------------------------------------------------------===//
#include <cstddef>
#include <stdexcept>
#include <utility>
#include <vector>
#include <sycl/sycl.hpp>
#include "dpnp4pybind11.hpp"
#include <pybind11/pybind11.h>
#include "utils/output_validation.hpp"
#include "utils/type_dispatch.hpp"
#include "zeros_ctor.hpp"
namespace py = pybind11;
namespace td_ns = dpctl::tensor::type_dispatch;
namespace dpctl::tensor::py_internal
{
using dpctl::utils::keep_args_alive;
typedef sycl::event (*zeros_contig_fn_ptr_t)(sycl::queue &,
std::size_t,
char *,
const std::vector<sycl::event> &);
/*!
* @brief Function to submit kernel to fill given contiguous memory allocation
* with zeros.
*
* @param exec_q Sycl queue to which kernel is submitted for execution.
* @param nelems Length of the sequence
* @param dst_p Kernel accessible USM pointer to the start of array to be
* populated.
* @param depends List of events to wait for before starting computations, if
* any.
*
* @return Event to wait on to ensure that computation completes.
* @defgroup CtorKernels
*/
template <typename dstTy>
sycl::event zeros_contig_impl(sycl::queue &exec_q,
std::size_t nelems,
char *dst_p,
const std::vector<sycl::event> &depends)
{
static constexpr int memset_val(0);
sycl::event fill_ev = exec_q.submit([&](sycl::handler &cgh) {
cgh.depends_on(depends);
cgh.memset(reinterpret_cast<void *>(dst_p), memset_val,
nelems * sizeof(dstTy));
});
return fill_ev;
}
template <typename fnT, typename Ty>
struct ZerosContigFactory
{
fnT get()
{
fnT f = zeros_contig_impl<Ty>;
return f;
}
};
static zeros_contig_fn_ptr_t zeros_contig_dispatch_vector[td_ns::num_types];
std::pair<sycl::event, sycl::event>
usm_ndarray_zeros(const dpctl::tensor::usm_ndarray &dst,
sycl::queue &exec_q,
const std::vector<sycl::event> &depends)
{
py::ssize_t dst_nelems = dst.get_size();
if (dst_nelems == 0) {
// nothing to do
return std::make_pair(sycl::event(), sycl::event());
}
if (!dpctl::utils::queues_are_compatible(exec_q, {dst})) {
throw py::value_error(
"Execution queue is not compatible with the allocation queue");
}
dpctl::tensor::validation::CheckWritable::throw_if_not_writable(dst);
auto array_types = td_ns::usm_ndarray_types();
int dst_typenum = dst.get_typenum();
int dst_typeid = array_types.typenum_to_lookup_id(dst_typenum);
char *dst_data = dst.get_data();
if (dst_nelems == 1 || dst.is_c_contiguous() || dst.is_f_contiguous()) {
auto fn = zeros_contig_dispatch_vector[dst_typeid];
sycl::event zeros_contig_event =
fn(exec_q, static_cast<std::size_t>(dst_nelems), dst_data, depends);
return std::make_pair(
keep_args_alive(exec_q, {dst}, {zeros_contig_event}),
zeros_contig_event);
}
else {
throw std::runtime_error(
"Only population of contiguous usm_ndarray objects is supported.");
}
}
void init_zeros_ctor_dispatch_vectors(void)
{
using namespace td_ns;
DispatchVectorBuilder<zeros_contig_fn_ptr_t, ZerosContigFactory, num_types>
dvb;
dvb.populate_dispatch_vector(zeros_contig_dispatch_vector);
return;
}
} // namespace dpctl::tensor::py_internal