Skip to content

Commit

Permalink
Merge branch 'main' into ibhosale_L0_implicit_state
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccorm4 authored Jan 15, 2025
2 parents c0dd9e7 + 71ee05c commit 0cd8a05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1048,6 +1048,8 @@ def create_dockerfile_buildbase(ddir, dockerfile_name, argmap):
# Install the windows- or linux-specific buildbase dependencies
if target_platform() == "windows":
df += """
RUN python3 -m pip install build
SHELL ["cmd", "/S", "/C"]
"""
else:
Expand Down
10 changes: 5 additions & 5 deletions qa/L0_lifecycle/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2018-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2018-2025, 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 @@ -1576,7 +1576,7 @@ if [ `grep -c "Model 'custom_zero_1_float32' (version 1) has 1 in-flight inferen
RET=1
fi

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

rm -f $CLIENT_LOG
Expand Down Expand Up @@ -1614,7 +1614,7 @@ if [ `grep -c "Model 'custom_sequence_int32' (version 1) has 1 in-flight inferen
RET=1
fi

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

rm -f $CLIENT_LOG
Expand Down Expand Up @@ -1655,7 +1655,7 @@ if [ `grep -c "Model 'ensemble_zero_1_float32' (version 1) has 1 in-flight infer
RET=1
fi

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

LOG_IDX=$((LOG_IDX+1))
Expand Down Expand Up @@ -2128,7 +2128,7 @@ if [ $? -ne 0 ]; then
fi
set -e

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

LOG_IDX=$((LOG_IDX+1))
Expand Down

0 comments on commit 0cd8a05

Please sign in to comment.