forked from triton-inference-server/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_grpc_custom_repeat.cc
287 lines (261 loc) · 9.58 KB
/
simple_grpc_custom_repeat.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
// 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 <atomic>
#include <condition_variable>
#include <iostream>
#include <map>
#include <string>
#include <vector>
#include "grpc_client.h"
namespace tc = triton::client;
using ResultMap =
std::map<std::string, std::vector<std::shared_ptr<tc::InferResult>>>;
using ResultList = std::vector<std::shared_ptr<tc::InferResult>>;
// Global mutex to synchronize the threads
std::mutex mutex_;
std::condition_variable cv_;
#define FAIL_IF_ERR(X, MSG) \
{ \
tc::Error err = (X); \
if (!err.IsOk()) { \
std::cerr << "error: " << (MSG) << ": " << err << std::endl; \
exit(1); \
} \
}
namespace {
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 and its gRPC port>"
<< std::endl;
std::cerr
<< "For -H, header must be 'Header:Value'. May be given multiple times."
<< std::endl;
std::cerr << "\t-r <the number of inference requests>" << std::endl;
std::cerr << "\t-s <the number of inference response to generate per request>"
<< std::endl;
std::cerr << "\t-o <data offset>" << std::endl;
std::cerr << "\t-d <delay time between each response>" << std::endl;
std::cerr << "\t-w <wait time before releasing the request>" << std::endl;
exit(1);
}
} // namespace
int
main(int argc, char** argv)
{
bool verbose = false;
std::string url("localhost:8001");
tc::Headers http_headers;
int request_count = 1;
int repeat_count = 1;
int data_offset = 100;
uint32_t delay_time = 1000;
uint32_t wait_time = 500;
// Parse commandline...
int opt;
while ((opt = getopt(argc, argv, "vu:H:r:s:o:d:w:")) != -1) {
switch (opt) {
case 'v':
verbose = true;
break;
case 'u':
url = optarg;
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 'r':
request_count = std::stoi(optarg);
break;
case 's':
repeat_count = std::stoi(optarg);
break;
case 'o':
data_offset = std::stoi(optarg);
break;
case 'd':
delay_time = std::stoi(optarg);
break;
case 'w':
wait_time = std::stoi(optarg);
break;
case '?':
Usage(argv);
break;
}
}
tc::Error err;
// We use the custom "repeat_int32" model which takes 3 inputs and
// 1 output. For a single request the model will generate 'repeat_count'
// responses. See is src/backends/backend/examples/repeat.cc.
std::string model_name = "repeat_int32";
std::atomic<int32_t> received_response(0);
// Create a InferenceServerGrpcClient instance to communicate with the
// server using gRPC protocol.
std::unique_ptr<tc::InferenceServerGrpcClient> client;
FAIL_IF_ERR(
tc::InferenceServerGrpcClient::Create(&client, url, verbose),
"unable to create grpc client");
ResultMap result_map;
// Note that client side statistics should be disabled in case of
// of decoupled model.
FAIL_IF_ERR(
client->StartStream(
[&](tc::InferResult* result) {
{
std::shared_ptr<tc::InferResult> result_ptr(result);
std::lock_guard<std::mutex> lk(mutex_);
std::string request_id;
result->Id(&request_id);
auto it = result_map.find(request_id);
if (it == result_map.end()) {
result_map[request_id] = ResultList();
}
result_map[request_id].push_back(result_ptr);
received_response++;
}
cv_.notify_all();
},
false /*enable_stats*/, 0 /* stream_timeout */, http_headers),
"unable to establish a streaming connection to server");
// Prepare the data for the tensors
std::vector<int32_t> in_data;
std::vector<uint32_t> delay_data;
std::vector<uint32_t> wait_data;
for (int i = 0; i < repeat_count; i++) {
in_data.push_back(data_offset + i);
delay_data.push_back(delay_time);
}
wait_data.push_back(wait_time);
// Initialize the inputs with the data.
tc::InferInput* in;
std::vector<int64_t> shape{repeat_count};
FAIL_IF_ERR(
tc::InferInput::Create(&in, "IN", shape, "INT32"),
"unable to create 'IN'");
std::shared_ptr<tc::InferInput> in_ptr(in);
FAIL_IF_ERR(in_ptr->Reset(), "unable to reset 'IN'");
FAIL_IF_ERR(
in_ptr->AppendRaw(
reinterpret_cast<uint8_t*>(&in_data[0]),
sizeof(int32_t) * repeat_count),
"unable to set data for 'IN'");
tc::InferInput* delay;
FAIL_IF_ERR(
tc::InferInput::Create(&delay, "DELAY", shape, "UINT32"),
"unable to create 'DELAY'");
std::shared_ptr<tc::InferInput> delay_ptr(delay);
FAIL_IF_ERR(delay_ptr->Reset(), "unable to reset 'DELAY'");
FAIL_IF_ERR(
delay_ptr->AppendRaw(
reinterpret_cast<uint8_t*>(&delay_data[0]),
sizeof(uint32_t) * repeat_count),
"unable to set data for 'DELAY'");
tc::InferInput* wait;
shape[0] = 1;
FAIL_IF_ERR(
tc::InferInput::Create(&wait, "WAIT", shape, "UINT32"),
"unable to create 'WAIT'");
std::shared_ptr<tc::InferInput> wait_ptr(wait);
FAIL_IF_ERR(wait_ptr->Reset(), "unable to reset 'WAIT'");
FAIL_IF_ERR(
wait_ptr->AppendRaw(
reinterpret_cast<uint8_t*>(&wait_data[0]), sizeof(uint32_t)),
"unable to set data for 'WAIT'");
std::vector<tc::InferInput*> inputs = {in_ptr.get(), delay_ptr.get(),
wait_ptr.get()};
tc::InferOptions options(model_name);
for (int id = 0; id < request_count; id++) {
options.request_id_ = std::to_string(id);
// Send inference request to the inference server.
FAIL_IF_ERR(
client->AsyncStreamInfer(options, inputs), "unable to run model");
}
// Wait until all callbacks are invoked
{
std::unique_lock<std::mutex> lk(mutex_);
cv_.wait(lk, [&]() {
if (received_response >= (repeat_count * request_count)) {
return true;
} else {
return false;
}
});
}
for (int i = 0; i < request_count; i++) {
std::string id(std::to_string(i));
if (repeat_count == 0) {
auto it = result_map.find(id);
if (it != result_map.end()) {
std::cerr << "received unexpected response for request id " << id
<< std::endl;
exit(1);
}
} else {
int32_t expected_output = data_offset;
auto it = result_map.find(id);
if (it == result_map.end()) {
std::cerr << "response for request id " << id << " not received"
<< std::endl;
exit(1);
}
if (it->second.size() != (uint32_t)repeat_count) {
std::cerr << "expected " << repeat_count << " many responses, got "
<< it->second.size() << std::endl;
exit(1);
}
for (auto this_result : it->second) {
int32_t* output_data;
size_t output_byte_size;
FAIL_IF_ERR(
this_result->RawData(
"OUT", (const uint8_t**)&output_data, &output_byte_size),
"unable to get result data for 'OUT'");
if (output_byte_size != 4) {
std::cerr << "error: received incorrect byte size for 'OUT': "
<< output_byte_size << std::endl;
exit(1);
}
if (*output_data != expected_output) {
std::cerr << "error: incorrect result returned, expected "
<< expected_output << ", got " << *output_data << std::endl;
exit(1);
}
expected_output++;
}
}
}
return 0;
}