Skip to content

Commit

Permalink
Fix L0_sdk: update the search name for the client wheel (triton-infer…
Browse files Browse the repository at this point in the history
…ence-server#6074)

* Fix name of client wheel to be looked for

* Fix up
  • Loading branch information
GuanLuo committed Jul 19, 2023
1 parent 899fd2d commit 00fee98
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions qa/L0_sdk/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2019-2021, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2019-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -152,8 +152,10 @@ else
RET=1
fi

# Check wheels
WHLVERSION=`cat /workspace/TRITON_VERSION | sed 's/dev/\.dev0/'`
# Check wheels, note that even TRITON_VERSION is passed as version field for
# wheel generation. The version number will be normalized by setuptools, so
# we need to replace the text here as well to match the normalized version.
WHLVERSION=`cat /workspace/TRITON_VERSION | sed 's/dev\./\.dev/'`
if [[ "aarch64" != $(uname -m) ]] ; then
WHLS="tritonclient-${WHLVERSION}-py3-none-any.whl \
tritonclient-${WHLVERSION}-py3-none-manylinux1_x86_64.whl"
Expand Down

0 comments on commit 00fee98

Please sign in to comment.