Browse Source
Update due to change of triton_client
Signed-off-by: Jael Gu <mengjia.gu@zilliz.com>
main
1 changed files with
1 additions and
1 deletions
-
benchmark/qps_test.py
|
@ -66,7 +66,7 @@ if args.num and args.pipe: |
|
|
|
|
|
|
|
|
if args.triton: |
|
|
if args.triton: |
|
|
client = triton_client.Client(url='localhost:8000') |
|
|
client = triton_client.Client(url='localhost:8000') |
|
|
out2 = client(data)[0][0][0] |
|
|
|
|
|
|
|
|
out2 = client(data)[0][0] |
|
|
print('Triton: OK') |
|
|
print('Triton: OK') |
|
|
|
|
|
|
|
|
if numpy.allclose(out1, out2, atol=args.atol): |
|
|
if numpy.allclose(out1, out2, atol=args.atol): |
|
|