forked from NVIDIA/TensorRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcirc_pad_plugin_cuda_python.py
372 lines (302 loc) · 12 KB
/
circ_pad_plugin_cuda_python.py
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
#
# SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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.
#
import onnx_graphsurgeon as gs
import numpy as np
import onnx
import tensorrt as trt
from polygraphy.backend.trt import (
CreateConfig,
EngineFromNetwork,
NetworkFromOnnxPath,
TrtRunner,
)
from polygraphy.json import to_json, from_json
from utils import checkCudaErrors, KernelHelper, parseArgs, CudaCtxManager
from cuda import cuda
circ_pad_half_kernel = r"""
#include <cuda_fp16.h>
extern "C" __global__
void circ_pad_half(half const* X, int const* all_pads, int const* orig_dims, half* Y, int const* Y_shape, int Y_len) {
int index = blockIdx.x * blockDim.x + threadIdx.x;
int stride = blockDim.x * gridDim.x;
for(int i = index; i < Y_len; i += stride)
{
int i3 = i % Y_shape[3];
int i2 = (i / Y_shape[3]) % Y_shape[2];
int i1 = (i / Y_shape[3] / Y_shape[2]) % Y_shape[1];
int i0 = i / Y_shape[3] / Y_shape[2] / Y_shape[1];
int j0 = (i0 - all_pads[0] + orig_dims[0]) % orig_dims[0];
int j1 = (i1 - all_pads[2] + orig_dims[1]) % orig_dims[1];
int j2 = (i2 - all_pads[4] + orig_dims[2]) % orig_dims[2];
int j3 = (i3 - all_pads[6] + orig_dims[3]) % orig_dims[3];
Y[i] = X[
orig_dims[3] * orig_dims[2] * orig_dims[1] * j0
+ orig_dims[3] * orig_dims[2] * j1
+ orig_dims[3] * j2
+ j3
];
}
}
"""
circ_pad_float_kernel = r"""
extern "C" __global__
void circ_pad_float(float const* X, int const* all_pads, int const* orig_dims, float* Y, int const* Y_shape, int Y_len) {
int index = blockIdx.x * blockDim.x + threadIdx.x;
int stride = blockDim.x * gridDim.x;
for(int i = index; i < Y_len; i += stride)
{
int i3 = i % Y_shape[3];
int i2 = (i / Y_shape[3]) % Y_shape[2];
int i1 = (i / Y_shape[3] / Y_shape[2]) % Y_shape[1];
int i0 = i / Y_shape[3] / Y_shape[2] / Y_shape[1];
int j0 = (i0 - all_pads[0] + orig_dims[0]) % orig_dims[0];
int j1 = (i1 - all_pads[2] + orig_dims[1]) % orig_dims[1];
int j2 = (i2 - all_pads[4] + orig_dims[2]) % orig_dims[2];
int j3 = (i3 - all_pads[6] + orig_dims[3]) % orig_dims[3];
Y[i] = X[
orig_dims[3] * orig_dims[2] * orig_dims[1] * j0
+ orig_dims[3] * orig_dims[2] * j1
+ orig_dims[3] * j2
+ j3
];
}
}
"""
class CircPadPlugin(trt.IPluginV2DynamicExt):
def __init__(self, fc=None):
trt.IPluginV2DynamicExt.__init__(self)
self.pads = []
self.X_shape = []
self.N = 0
self.all_pads_d = None
self.orig_dims_d = None
self.Y_shape_d = None
self.num_outputs = 1
self.plugin_namespace = ""
self.plugin_type = "CircPadPlugin"
self.plugin_version = "1"
self.cuDevice = None
if fc is not None:
assert set([f.name for f in fc]) == set(
["pads", "N"]
), "Field collection invalid"
for f in fc:
if f.name == "pads":
self.pads = f.data
elif f.name == "N":
self.N = int(f.data)
def initialize(self):
err, self.cuDevice = cuda.cuDeviceGet(0)
trt.get_plugin_registry().acquire_plugin_resource(
"cuda_ctx", CudaCtxManager(self.cuDevice)
)
self.all_pads_d = checkCudaErrors(
cuda.cuMemAlloc(np.int32().itemsize * self.N * 2)
)
self.orig_dims_d = checkCudaErrors(
cuda.cuMemAlloc(np.int32().itemsize * self.N)
)
self.Y_shape_d = checkCudaErrors(cuda.cuMemAlloc(np.int32().itemsize * self.N))
def get_output_datatype(self, index, input_types):
return input_types[0]
def get_output_dimensions(self, output_index, inputs, exprBuilder):
output_dims = trt.DimsExprs(inputs[0])
for i in range(np.size(self.pads) // 2):
output_dims[len(output_dims) - i - 1] = exprBuilder.operation(
trt.DimensionOperation.SUM,
inputs[0][len(output_dims) - i - 1],
exprBuilder.constant(self.pads[i * 2] + self.pads[i * 2 + 1]),
)
return output_dims
def serialize(self):
return to_json({"pads": self.pads, "N": self.N})
def configure_plugin(self, inp, out):
X_dims = inp[0].desc.dims
self.X_shape = np.zeros((len(X_dims),))
for i in range(len(X_dims)):
self.X_shape[i] = X_dims[i]
all_pads = np.zeros((self.N * 2,), dtype=np.int32)
orig_dims = np.array(self.X_shape, dtype=np.int32)
out_dims = np.array(self.X_shape, dtype=np.int32)
for i in range(np.size(self.pads) // 2):
out_dims[self.N - i - 1] += self.pads[i * 2] + self.pads[i * 2 + 1]
all_pads[self.N * 2 - 2 * i - 2] = self.pads[i * 2]
all_pads[self.N * 2 - 2 * i - 1] = self.pads[i * 2 + 1]
# Copy vectors from host memory to device memory
if self.all_pads_d:
checkCudaErrors(
cuda.cuMemcpyHtoD(self.all_pads_d, all_pads, all_pads.nbytes)
)
if self.orig_dims_d:
checkCudaErrors(
cuda.cuMemcpyHtoD(self.orig_dims_d, orig_dims, orig_dims.nbytes)
)
if self.Y_shape_d:
checkCudaErrors(
cuda.cuMemcpyHtoD(self.Y_shape_d, out_dims, out_dims.nbytes)
)
self.Y_len_d = np.prod(out_dims)
def supports_format_combination(self, pos, in_out, num_inputs):
assert num_inputs == 1
assert pos < len(in_out)
desc = in_out[pos]
if desc.format != trt.TensorFormat.LINEAR:
return False
# first input should be float16 or float32
if pos == 0:
return desc.type == trt.DataType.FLOAT or desc.type == trt.DataType.HALF
# output should have the same type as the input
if pos == 1:
return in_out[0].type == desc.type
assert False
def enqueue(self, input_desc, output_desc, inputs, outputs, workspace, stream):
inp_dtype = trt.nptype(input_desc[0].type)
blockSize = 256
numBlocks = int((np.prod(np.array(self.X_shape)) + blockSize - 1) // blockSize)
da = np.array([inputs[0]], dtype=np.uint64)
dc = np.array([outputs[0]], dtype=np.uint64)
d_all_pads = np.array([int(self.all_pads_d)], dtype=np.uint64)
d_orig_dims = np.array([int(self.orig_dims_d)], dtype=np.uint64)
d_Y_shape = np.array([int(self.Y_shape_d)], dtype=np.uint64)
Y_len = np.array(self.Y_len_d, dtype=np.uint32)
args = [da, d_all_pads, d_orig_dims, dc, d_Y_shape, Y_len]
kernelArgs = np.array([arg.ctypes.data for arg in args], dtype=np.uint64)
stream_ptr = np.array([stream], dtype=np.uint64)
if inp_dtype == np.float32:
kernelHelper = KernelHelper(circ_pad_float_kernel, int(self.cuDevice))
_circ_pad_float_kernel = kernelHelper.getFunction(b"circ_pad_float")
checkCudaErrors(
cuda.cuLaunchKernel(
_circ_pad_float_kernel,
numBlocks,
1,
1,
blockSize,
1,
1,
0,
stream_ptr,
kernelArgs,
0,
)
)
elif inp_dtype == np.float16:
kernelHelper = KernelHelper(circ_pad_half_kernel, int(self.cuDevice))
_circ_pad_half_kernel = kernelHelper.getFunction(b"circ_pad_half")
checkCudaErrors(
cuda.cuLaunchKernel(
_circ_pad_half_kernel,
numBlocks,
1,
1,
blockSize,
1,
1,
0,
stream_ptr,
kernelArgs,
0,
)
)
else:
raise ValueError("inp_dtype not valid")
def clone(self):
cloned_plugin = CircPadPlugin()
cloned_plugin.__dict__.update(self.__dict__)
return cloned_plugin
def terminate(self):
if self.all_pads_d:
checkCudaErrors(cuda.cuMemFree(self.all_pads_d))
if self.orig_dims_d:
checkCudaErrors(cuda.cuMemFree(self.orig_dims_d))
if self.Y_shape_d:
checkCudaErrors(cuda.cuMemFree(self.Y_shape_d))
trt.get_plugin_registry().release_plugin_resource("cuda_ctx")
#
# The following defaults take effect since the respective methods are not overriden
#
# def get_serialization_size(self):
# return len(to_json({"pads": self.pads}))
# def get_workspace_size(self, input_desc, output_desc):
# return 0
# def destroy(self):
# pass
class CircPadPluginCreator(trt.IPluginCreator):
def __init__(self):
trt.IPluginCreator.__init__(self)
self.name = "CircPadPlugin"
self.plugin_namespace = ""
self.plugin_version = "1"
self.field_names = trt.PluginFieldCollection(
[
trt.PluginField("pads", np.array([]), trt.PluginFieldType.INT32),
trt.PluginField("N", np.array([]), trt.PluginFieldType.INT32),
]
)
def create_plugin(self, name, fc):
return CircPadPlugin(fc)
def deserialize_plugin(self, name, data):
deserialized = CircPadPlugin()
j = dict(from_json(data))
deserialized.__dict__.update(j)
return deserialized
if __name__ == "__main__":
args = parseArgs()
# Initialize CUDA Driver API
(err,) = cuda.cuInit(0)
# Retrieve handle for device 0
err, cuDevice = cuda.cuDeviceGet(0)
plg_registry = trt.get_plugin_registry()
# Create context
plg_registry.acquire_plugin_resource("cuda_ctx", CudaCtxManager(cuDevice))
precision = np.float32 if args.precision == "fp32" else np.float16
inp_shape = (100, 2, 32, 32)
X = np.random.normal(size=inp_shape).astype(precision)
pads = (1, 1, 1, 1)
# Load standard plugins
TRT_LOGGER = trt.Logger(trt.Logger.WARNING)
trt.init_libnvinfer_plugins(TRT_LOGGER, namespace="")
# Register plugin creator
my_plugin_creator = CircPadPluginCreator()
plg_registry.register_creator(my_plugin_creator, "")
# create ONNX model
onnx_path = "test_CircPadPlugin.onnx"
inputA = gs.Variable(name="X", shape=inp_shape, dtype=precision)
Y = gs.Variable(name="Y", dtype=precision)
myPluginNode = gs.Node(
name="CircPadPlugin",
op="CircPadPlugin",
inputs=[inputA],
outputs=[Y],
attrs={"pads": pads, "N": 4},
)
graph = gs.Graph(nodes=[myPluginNode], inputs=[inputA], outputs=[Y], opset=16)
onnx.save(gs.export_onnx(graph), onnx_path)
# build engine
build_engine = EngineFromNetwork(
NetworkFromOnnxPath(onnx_path), CreateConfig(fp16=precision == np.float16)
)
Y_ref = np.pad(X, [[0, 0], [0, 0], [pads[0], pads[1]], [pads[2], pads[3]]], "wrap")
# Run
with TrtRunner(build_engine, "trt_runner") as runner:
outputs = runner.infer({"X": X})
Y = outputs["Y"]
if np.allclose(Y, Y_ref):
print("Inference result correct!")
else:
print("Inference result incorrect!")
plg_registry.release_plugin_resource("cuda_ctx")