-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathlaunch.h
102 lines (91 loc) · 4.08 KB
/
launch.h
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
/*
* Copyright Codeplay Software Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef PORTDNN_INCLUDE_BINARYOP_LAUNCH_H_
#define PORTDNN_INCLUDE_BINARYOP_LAUNCH_H_
/**
* \file
* Implements the \ref sycldnn::binaryop::launch() function, which
* asynchronously dispatches the SYCL kernels to compute a binary elementwise
* operation.
*/
#include "portdnn/mem_object.h"
#include "portdnn/status.h"
#include "portdnn/backend/backend_helpers.h"
#include "portdnn/helpers/macros.h"
#include "portdnn/binaryop/params.h"
#include "portdnn/internal/binaryop/launch.h"
namespace sycldnn {
/** Namespace containing all binary elementwise operations. */
namespace binaryop {
/**
* Launch the binary operation kernel.
*
* \tparam T The data type of the input tensor.
* \tparam Op The type of the BinaryOp.
* \tparam Backend The type of the Backend.
*
* \param [in] lhs A pointer to the first input tensor.
* \param [in] rhs A pointer to the second input tensor.
* \param [out] out A pointer to the output tensor.
* \param [in] params The parameters of the binary operation.
* \param [in] backend The backend that provides access to the SYCL buffers
* corresponding to the input and output pointers.
* \return An \ref SNNStatus containing the SYCL event tied to the kernel
* launches and a \ref StatusCode enum showing if the launch was OK or
* whether it encountered some problem.
*/
template <typename T, typename Op, typename Backend,
typename = typename std::enable_if<
sycldnn::backend::is_buffer_backend_v<Backend>>::type>
SNNStatus launch(typename Backend::template pointer_type<T const> lhs,
typename Backend::template pointer_type<T const> rhs,
typename Backend::template pointer_type<T> out,
const BinaryParams& params, Backend& backend) {
return internal::sublaunch<T, Op, Backend>(lhs, rhs, out, params, backend,
{});
}
/**
* Launch the binary operation kernel.
*
* \tparam T The data type of the input tensor.
* \tparam Op The type of the BinaryOp.
* \tparam Backend The type of the Backend.
*
* \param [in] lhs A pointer to the first input tensor.
* \param [in] rhs A pointer to the second input tensor.
* \param [out] out A pointer to the output tensor.
* \param [in] params The parameters of the binary operation.
* \param [in] backend The backend that provides access to the SYCL buffers
* corresponding to the input and output pointers.
* \param [in] events Events which should be completed before the operation.
* \return An \ref SNNStatus containing the SYCL event tied to the kernel
* launches and a \ref StatusCode enum showing if the launch was OK or
* whether it encountered some problem.
*/
template <typename T, typename Op, typename Backend,
typename = typename std::enable_if<
sycldnn::backend::is_usm_backend_v<Backend>>::type>
SNNStatus launch(typename Backend::template pointer_type<T const> lhs,
typename Backend::template pointer_type<T const> rhs,
typename Backend::template pointer_type<T> out,
const BinaryParams& params, Backend& backend,
std::vector<cl::sycl::event> events = {}) {
return internal::sublaunch<T, Op, Backend>(lhs, rhs, out, params, backend,
events);
}
} // namespace binaryop
} // namespace sycldnn
#endif // PORTDNN_INCLUDE_BINARYOP_LAUNCH_H_