-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathBinaryOp.cpp
More file actions
167 lines (141 loc) · 5.77 KB
/
Copy pathBinaryOp.cpp
File metadata and controls
167 lines (141 loc) · 5.77 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
160
161
162
163
164
165
166
167
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <executorch/backends/vulkan/runtime/graph/ops/OperatorRegistry.h>
#include <executorch/backends/vulkan/runtime/graph/ops/impl/Common.h>
#include <executorch/backends/vulkan/runtime/graph/ops/impl/Staging.h>
#include <executorch/backends/vulkan/runtime/graph/ops/impl/utils/ScalarUtils.h>
#include <executorch/backends/vulkan/runtime/graph/ops/impl/utils/TensorUtils.h>
#include <executorch/backends/vulkan/runtime/graph/ops/utils/ShaderNameUtils.h>
namespace vkcompute {
void check_binary_op_args(
ComputeGraph& graph,
const ValueRef self,
const ValueRef other,
const ValueRef out) {
VK_CHECK_COND(graph.packed_dim_of(self) == graph.packed_dim_of(other));
VK_CHECK_COND(graph.packed_dim_of(self) == graph.packed_dim_of(out));
const std::vector<int64_t> self_sizes = graph.sizes_of(self);
const std::vector<int64_t> other_sizes = graph.sizes_of(other);
const std::vector<int64_t> out_sizes = graph.sizes_of(out);
std::vector<int64_t> broadcasted_sizes =
calculate_broadcasted_output_size(self_sizes, other_sizes);
VK_CHECK_COND(out_sizes == broadcasted_sizes);
}
void resize_binary_op_node(
ComputeGraph* graph,
const std::vector<ArgGroup>& args,
const std::vector<ValueRef>& resize_args) {
(void)resize_args;
const ValueRef out = args.at(0).refs.at(0);
// TODO(T183442143): Verify tensors are broadcastable.
const ValueRef self = args.at(1).refs.at(0);
const ValueRef other = args.at(1).refs.at(1);
const std::vector<int64_t> self_sizes = graph->sizes_of(self);
const std::vector<int64_t> other_sizes = graph->sizes_of(other);
const std::vector<int64_t> new_out_sizes =
calculate_broadcasted_output_size(self_sizes, other_sizes);
graph->virtual_resize(out, new_out_sizes);
}
void add_binary_op_node(
ComputeGraph& graph,
const ValueRef in1,
const ValueRef in2,
const ValueRef alpha,
const ValueRef out,
const std::string& op_name) {
ValueRef arg1 = prepack_standard_like(graph, in1, out, true);
ValueRef arg2 = prepack_standard_like(graph, in2, out, true);
check_binary_op_args(graph, arg1, arg2, out);
float alpha_val = 1.0f;
// String is checked since floor_div passes in an unused string argument in
// place of alpha
if (is_valid(alpha) && !graph.val_is_string(alpha)) {
alpha_val = graph.extract_scalar<float>(alpha);
}
std::string kernel_name("binary_");
kernel_name.reserve(kShaderNameReserve);
kernel_name += op_name;
add_storage_type_suffix(kernel_name, graph.storage_type_of(out));
add_dtype_suffix(kernel_name, graph.dtype_of(in1));
vkapi::ParamsBindList ubos = {
graph.meta_ubo(out), graph.meta_ubo(arg1), graph.meta_ubo(arg2)};
// Detect packed-dim broadcasting for texture path
int32_t in_broadcast_packed = 0;
int32_t other_broadcast_packed = 0;
if (!graph.is_buffer_storage(out)) {
in_broadcast_packed = is_packed_dim_broadcasted(graph, out, arg1) ? 1 : 0;
other_broadcast_packed =
is_packed_dim_broadcasted(graph, out, arg2) ? 1 : 0;
}
graph.execute_nodes().emplace_back(new DynamicDispatchNode(
graph,
VK_KERNEL_FROM_STR(kernel_name),
default_pick_global_wg_size,
default_pick_local_wg_size,
// Inputs and Outputs
{{out, vkapi::kWrite}, {{arg1, arg2}, vkapi::kRead}},
// Shader params buffers
ubos,
// Push Constants
{{PushConstantDataInfo(&alpha_val, sizeof(float))}},
// Specialization Constants
{graph.hashed_layout_of(out),
graph.hashed_layout_of(arg1),
graph.hashed_layout_of(arg2),
in_broadcast_packed,
other_broadcast_packed},
// Resize Args
{},
// Resizing Logic
resize_binary_op_node));
}
#define DEFINE_BINARY_OP_WITH_ALPHA_FN(op_name) \
void op_name(ComputeGraph& graph, const std::vector<ValueRef>& args) { \
return add_binary_op_node( \
graph, args[0], args[1], args[2], args[3], #op_name); \
}
#define DEFINE_BINARY_OP_FN(op_name) \
void op_name(ComputeGraph& graph, const std::vector<ValueRef>& args) { \
return add_binary_op_node( \
graph, args[0], args[1], kDummyValueRef, args[2], #op_name); \
}
DEFINE_BINARY_OP_WITH_ALPHA_FN(add);
DEFINE_BINARY_OP_WITH_ALPHA_FN(sub);
// Floor div does not have an alpha, but a string argument (which is unused) is
// passed in at the same location as the alpha argument in other op.
DEFINE_BINARY_OP_WITH_ALPHA_FN(floor_divide);
DEFINE_BINARY_OP_FN(mul);
DEFINE_BINARY_OP_FN(div);
DEFINE_BINARY_OP_FN(pow);
DEFINE_BINARY_OP_FN(minimum);
DEFINE_BINARY_OP_FN(eq);
DEFINE_BINARY_OP_FN(lt);
DEFINE_BINARY_OP_FN(le);
DEFINE_BINARY_OP_FN(gt);
DEFINE_BINARY_OP_FN(ge);
DEFINE_BINARY_OP_FN(bitwise_and);
DEFINE_BINARY_OP_FN(bitwise_or);
REGISTER_OPERATORS {
VK_REGISTER_OP(aten.add.Tensor, add);
VK_REGISTER_OP(aten.sub.Tensor, sub);
VK_REGISTER_OP(aten.mul.Tensor, mul);
VK_REGISTER_OP(aten.div.Tensor, div);
VK_REGISTER_OP(aten.div.Tensor_mode, floor_divide);
VK_REGISTER_OP(aten.pow.Tensor_Tensor, pow);
VK_REGISTER_OP(aten.minimum.default, minimum);
VK_REGISTER_OP(aten.eq.Tensor, eq);
VK_REGISTER_OP(aten.lt.Tensor, lt);
VK_REGISTER_OP(aten.le.Tensor, le);
VK_REGISTER_OP(aten.gt.Tensor, gt);
VK_REGISTER_OP(aten.ge.Tensor, ge);
VK_REGISTER_OP(aten.bitwise_and.Tensor, bitwise_and);
VK_REGISTER_OP(aten.logical_and.default, bitwise_and);
VK_REGISTER_OP(aten.bitwise_or.Tensor, bitwise_or);
VK_REGISTER_OP(aten.logical_or.default, bitwise_or);
}
} // namespace vkcompute