forked from triton-inference-server/client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreuse_infer_objects_client.cc
482 lines (432 loc) · 16.6 KB
/
reuse_infer_objects_client.cc
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
// Copyright (c) 2020-2021, NVIDIA 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 NVIDIA CORPORATION 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 ``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 OWNER 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.
#include <unistd.h>
#include <iostream>
#include <string>
#include "grpc_client.h"
#include "http_client.h"
#include "shm_utils.h"
namespace tc = triton::client;
#define FAIL_IF_ERR(X, MSG) \
{ \
tc::Error err = (X); \
if (!err.IsOk()) { \
std::cerr << "error: " << (MSG) << ": " << err << std::endl; \
exit(1); \
} \
}
namespace {
union TritonClient {
TritonClient()
{
new (&http_client_) std::unique_ptr<tc::InferenceServerHttpClient>{};
}
~TritonClient() {}
std::unique_ptr<tc::InferenceServerHttpClient> http_client_;
std::unique_ptr<tc::InferenceServerGrpcClient> grpc_client_;
};
void
ValidateShapeAndDatatype(
const std::string& name, std::shared_ptr<tc::InferResult> result)
{
std::vector<int64_t> shape;
FAIL_IF_ERR(
result->Shape(name, &shape), "unable to get shape for '" + name + "'");
// Validate shape
if ((shape.size() != 2) || (shape[0] != 1) || (shape[1] != 16)) {
std::cerr << "error: received incorrect shapes for '" << name << "'"
<< std::endl;
exit(1);
}
std::string datatype;
FAIL_IF_ERR(
result->Datatype(name, &datatype),
"unable to get datatype for '" + name + "'");
// Validate datatype
if (datatype.compare("INT32") != 0) {
std::cerr << "error: received incorrect datatype for '" << name
<< "': " << datatype << std::endl;
exit(1);
}
}
void
InferAndValidate(
const bool use_shared_memory, TritonClient& triton_client,
const std::string& protocol, const tc::InferOptions& options,
const tc::Headers& http_headers, std::vector<tc::InferInput*>& inputs,
const size_t input_byte_size,
std::vector<tc::InferRequestedOutput*>& outputs,
const size_t output_byte_size, std::vector<int*>& shm_ptrs)
{
std::vector<int32_t> input0_data(16);
std::vector<int32_t> input1_data(16);
int32_t* input0_data_ptr;
int32_t* input1_data_ptr;
int32_t* output0_data_ptr;
int32_t* output1_data_ptr;
FAIL_IF_ERR(inputs[0]->Reset(), "unable to reset input 'INPUT0'");
FAIL_IF_ERR(inputs[1]->Reset(), "unable to reset input 'INPUT1'");
if (use_shared_memory) {
input0_data_ptr = shm_ptrs[0];
input1_data_ptr = shm_ptrs[1];
FAIL_IF_ERR(
inputs[0]->SetSharedMemory(
"input_data", input_byte_size, 0 /* offset */),
"unable to set shared memory for INPUT0");
FAIL_IF_ERR(
inputs[1]->SetSharedMemory(
"input_data", input_byte_size, input_byte_size /* offset */),
"unable to set shared memory for INPUT1");
FAIL_IF_ERR(
outputs[0]->SetSharedMemory(
"output_data", output_byte_size, 0 /* offset */),
"unable to set shared memory for 'OUTPUT0'");
FAIL_IF_ERR(
outputs[1]->SetSharedMemory(
"output_data", output_byte_size, output_byte_size /* offset */),
"unable to set shared memory for 'OUTPUT1'");
} else {
input0_data_ptr = &input0_data[0];
input1_data_ptr = &input1_data[0];
// Create the data for the two input tensors. Initialize the first
// to unique integers and the second to all twos. We use twos instead
// of ones in input1_data to validate whether inputs were set correctly.
for (size_t i = 0; i < 16; ++i) {
input0_data[i] = i;
input1_data[i] = 2;
}
FAIL_IF_ERR(
inputs[0]->AppendRaw(
reinterpret_cast<uint8_t*>(&input0_data[0]),
input0_data.size() * sizeof(int32_t)),
"unable to set data for 'INPUT0'");
FAIL_IF_ERR(
inputs[1]->AppendRaw(
reinterpret_cast<uint8_t*>(&input1_data[0]),
input1_data.size() * sizeof(int32_t)),
"unable to set data for 'INPUT1'");
FAIL_IF_ERR(
outputs[0]->UnsetSharedMemory(),
"unable to unset shared memory for 'OUTPUT0'");
FAIL_IF_ERR(
outputs[1]->UnsetSharedMemory(),
"unable to unset shared memory for 'OUTPUT1'");
}
std::vector<const tc::InferRequestedOutput*> routputs = {outputs[0],
outputs[1]};
tc::InferResult* results;
if (protocol == "http") {
FAIL_IF_ERR(
triton_client.http_client_->Infer(
&results, options, inputs, routputs, http_headers),
"unable to run model");
} else {
FAIL_IF_ERR(
triton_client.grpc_client_->Infer(
&results, options, inputs, routputs, http_headers),
"unable to run model");
}
std::shared_ptr<tc::InferResult> results_ptr;
results_ptr.reset(results);
// Validate the results...
ValidateShapeAndDatatype("OUTPUT0", results_ptr);
ValidateShapeAndDatatype("OUTPUT1", results_ptr);
if (use_shared_memory) {
std::cout << "\n\n======== SHARED_MEMORY ========\n";
output0_data_ptr = shm_ptrs[2];
output1_data_ptr = shm_ptrs[3];
} else {
std::cout << "\n\n======== NO_SHARED_MEMORY ========\n";
// Get pointers to the result returned...
size_t recv_output0_byte_size;
FAIL_IF_ERR(
results_ptr->RawData(
"OUTPUT0", (const uint8_t**)&output0_data_ptr,
&recv_output0_byte_size),
"unable to get result data for 'OUTPUT0'");
if (recv_output0_byte_size != output_byte_size) {
std::cerr << "error: received incorrect byte size for 'OUTPUT0': "
<< recv_output0_byte_size << std::endl;
exit(1);
}
size_t recv_output1_byte_size;
FAIL_IF_ERR(
results_ptr->RawData(
"OUTPUT1", (const uint8_t**)&output1_data_ptr,
&recv_output1_byte_size),
"unable to get result data for 'OUTPUT1'");
if (recv_output1_byte_size != output_byte_size) {
std::cerr << "error: received incorrect byte size for 'OUTPUT1': "
<< recv_output1_byte_size << std::endl;
exit(1);
}
}
for (size_t i = 0; i < 16; ++i) {
std::cout << input0_data_ptr[i] << " + " << input1_data_ptr[i] << " = "
<< output0_data_ptr[i] << std::endl;
std::cout << input0_data_ptr[i] << " - " << input1_data_ptr[i] << " = "
<< output1_data_ptr[i] << std::endl;
if ((input0_data_ptr[i] + input1_data_ptr[i]) != output0_data_ptr[i]) {
std::cerr << "error: incorrect sum" << std::endl;
exit(1);
}
if ((input0_data_ptr[i] - input1_data_ptr[i]) != output1_data_ptr[i]) {
std::cerr << "error: incorrect difference" << std::endl;
exit(1);
}
}
std::cout << "\n======== END ========\n\n";
}
void
Usage(char** argv, const std::string& msg = std::string())
{
if (!msg.empty()) {
std::cerr << "error: " << msg << std::endl;
}
std::cerr << "Usage: " << argv[0] << " [options]" << std::endl;
std::cerr << "\t-v" << std::endl;
std::cerr << "\t-u <URL for inference service>" << std::endl;
std::cerr << "\t-H <HTTP header>" << std::endl;
std::cerr << std::endl;
std::cerr
<< "For -H, header must be 'Header:Value'. May be given multiple times."
<< std::endl;
exit(1);
}
} // namespace
// Tests whether the same InferInput and InferRequestedOutput objects can be
// successfully used repeatedly for different inferences using/not-using
// shared memory.
int
main(int argc, char** argv)
{
bool verbose = false;
std::string url("localhost:8000");
bool url_specified = false;
tc::Headers http_headers;
std::string protocol("http");
// Parse commandline...
int opt;
while ((opt = getopt(argc, argv, "vu:i:H:")) != -1) {
switch (opt) {
case 'v':
verbose = true;
break;
case 'u':
url = optarg;
url_specified = true;
break;
case 'i':
protocol = optarg;
std::transform(
protocol.begin(), protocol.end(), protocol.begin(), ::tolower);
break;
case 'H': {
std::string arg = optarg;
std::string header = arg.substr(0, arg.find(":"));
http_headers[header] = arg.substr(header.size() + 1);
break;
}
case '?':
Usage(argv);
break;
}
}
// We use a simple model that takes 2 input tensors of 16 integers
// each and returns 2 output tensors of 16 integers each. One output
// tensor is the element-wise sum of the inputs and one output is
// the element-wise difference.
std::string model_name = "simple";
std::string model_version = "";
// Create the inference client for the server. From it
// extract and validate that the model meets the requirements for
// image classification.
TritonClient triton_client;
tc::Error err;
if (protocol == "http") {
err = tc::InferenceServerHttpClient::Create(
&triton_client.http_client_, url, verbose);
} else if (protocol == "grpc") {
if (!url_specified) {
url = "localhost:8001";
}
err = tc::InferenceServerGrpcClient::Create(
&triton_client.grpc_client_, url, verbose);
} else {
std::cerr
<< "error: unsupported protocol provided: only supports grpc or http."
<< std::endl;
exit(1);
}
if (!err.IsOk()) {
std::cerr << "error: unable to create client for inference: " << err
<< std::endl;
exit(1);
}
// Unregistering all shared memory regions for a clean
// start.
if (protocol == "http") {
FAIL_IF_ERR(
triton_client.http_client_->UnregisterSystemSharedMemory(),
"unable to unregister all system shared memory regions");
FAIL_IF_ERR(
triton_client.http_client_->UnregisterCudaSharedMemory(),
"unable to unregister all cuda shared memory regions");
} else {
FAIL_IF_ERR(
triton_client.grpc_client_->UnregisterSystemSharedMemory(),
"unable to unregister all system shared memory regions");
FAIL_IF_ERR(
triton_client.grpc_client_->UnregisterCudaSharedMemory(),
"unable to unregister all cuda shared memory regions");
}
std::vector<int64_t> shape{1, 16};
size_t input_byte_size = 64;
size_t output_byte_size = 64;
// Initialize the inputs with the data.
tc::InferInput* input0;
tc::InferInput* input1;
FAIL_IF_ERR(
tc::InferInput::Create(&input0, "INPUT0", shape, "INT32"),
"unable to get INPUT0");
std::shared_ptr<tc::InferInput> input0_ptr;
input0_ptr.reset(input0);
FAIL_IF_ERR(
tc::InferInput::Create(&input1, "INPUT1", shape, "INT32"),
"unable to get INPUT1");
std::shared_ptr<tc::InferInput> input1_ptr;
input1_ptr.reset(input1);
// Create Input0 and Input1 in Shared Memory. Initialize Input0 to unique
// integers and Input1 to all ones.
std::string shm_key = "/input_simple";
int shm_fd_ip, *input0_shm;
FAIL_IF_ERR(
tc::CreateSharedMemoryRegion(shm_key, input_byte_size * 2, &shm_fd_ip),
"");
FAIL_IF_ERR(
tc::MapSharedMemory(
shm_fd_ip, 0, input_byte_size * 2, (void**)&input0_shm),
"");
FAIL_IF_ERR(tc::CloseSharedMemory(shm_fd_ip), "");
int* input1_shm = (int*)(input0_shm + 16);
for (size_t i = 0; i < 16; ++i) {
*(input0_shm + i) = i;
*(input1_shm + i) = 1;
}
if (protocol == "http") {
FAIL_IF_ERR(
triton_client.http_client_->RegisterSystemSharedMemory(
"input_data", "/input_simple", input_byte_size * 2),
"failed to register input shared memory region");
} else {
FAIL_IF_ERR(
triton_client.grpc_client_->RegisterSystemSharedMemory(
"input_data", "/input_simple", input_byte_size * 2),
"failed to register input shared memory region");
}
// Generate the outputs to be requested.
tc::InferRequestedOutput* output0;
tc::InferRequestedOutput* output1;
FAIL_IF_ERR(
tc::InferRequestedOutput::Create(&output0, "OUTPUT0"),
"unable to get 'OUTPUT0'");
std::shared_ptr<tc::InferRequestedOutput> output0_ptr;
output0_ptr.reset(output0);
FAIL_IF_ERR(
tc::InferRequestedOutput::Create(&output1, "OUTPUT1"),
"unable to get 'OUTPUT1'");
std::shared_ptr<tc::InferRequestedOutput> output1_ptr;
output1_ptr.reset(output1);
// Create Output0 and Output1 in Shared Memory
shm_key = "/output_simple";
int shm_fd_op;
int* output0_shm;
FAIL_IF_ERR(
tc::CreateSharedMemoryRegion(shm_key, output_byte_size * 2, &shm_fd_op),
"");
FAIL_IF_ERR(
tc::MapSharedMemory(
shm_fd_op, 0, output_byte_size * 2, (void**)&output0_shm),
"");
FAIL_IF_ERR(tc::CloseSharedMemory(shm_fd_op), "");
int* output1_shm = (int*)(output0_shm + 16);
if (protocol == "http") {
FAIL_IF_ERR(
triton_client.http_client_->RegisterSystemSharedMemory(
"output_data", "/output_simple", output_byte_size * 2),
"failed to register output shared memory region");
} else {
FAIL_IF_ERR(
triton_client.grpc_client_->RegisterSystemSharedMemory(
"output_data", "/output_simple", output_byte_size * 2),
"failed to register output shared memory region");
}
std::vector<tc::InferInput*> inputs = {input0_ptr.get(), input1_ptr.get()};
std::vector<tc::InferRequestedOutput*> outputs = {output0_ptr.get(),
output1_ptr.get()};
std::vector<int*> shm_ptrs = {input0_shm, input1_shm, output0_shm,
output1_shm};
// The inference settings. Will be using default for now.
tc::InferOptions options(model_name);
options.model_version_ = model_version;
// Issue inference using shared memory
InferAndValidate(
true /* use_shared_memory */, triton_client, protocol, options,
http_headers, inputs, input_byte_size, outputs, output_byte_size,
shm_ptrs);
// Issue inference without using shared memory
InferAndValidate(
false /* use_shared_memory */, triton_client, protocol, options,
http_headers, inputs, input_byte_size, outputs, output_byte_size,
shm_ptrs);
// Issue inference using shared memory
InferAndValidate(
true /* use_shared_memory */, triton_client, protocol, options,
http_headers, inputs, input_byte_size, outputs, output_byte_size,
shm_ptrs);
// Unregister shared memory
if (protocol == "http") {
FAIL_IF_ERR(
triton_client.http_client_->UnregisterSystemSharedMemory("input_data"),
"unable to unregister shared memory input region");
FAIL_IF_ERR(
triton_client.http_client_->UnregisterSystemSharedMemory("output_data"),
"unable to unregister shared memory output region");
} else {
FAIL_IF_ERR(
triton_client.grpc_client_->UnregisterSystemSharedMemory("input_data"),
"unable to unregister shared memory input region");
FAIL_IF_ERR(
triton_client.grpc_client_->UnregisterSystemSharedMemory("output_data"),
"unable to unregister shared memory output region");
}
// Cleanup shared memory
FAIL_IF_ERR(tc::UnmapSharedMemory(input0_shm, input_byte_size * 2), "");
FAIL_IF_ERR(tc::UnlinkSharedMemoryRegion("/input_simple"), "");
FAIL_IF_ERR(tc::UnmapSharedMemory(output0_shm, output_byte_size * 2), "");
FAIL_IF_ERR(tc::UnlinkSharedMemoryRegion("/output_simple"), "");
return 0;
}