-
Notifications
You must be signed in to change notification settings - Fork 1.6k
test: L0_orca_trtllm fixed #8191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
…directory structure and add func defn
|
||
cd ${BASE_DIR} | ||
} | ||
|
||
clone_tensorrt_llm_backend_repo | ||
build_gpt2_base_model | ||
build_gpt2_tensorrt_engine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How did this call to build_gpt2_tensorrt_engine
previously work if the function didn't exist until this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried finding an answer to this, but was unable to
Checked with @mc-nv if anything changed in the way CI runs or mounts. No luck.
Double checked if the test did actually run as expected before it broke (It did)
Test started breaking when we merged 24.04 release branch into main.
They were originally ONLY defined in L0_perf_tensorrt_llm/test.sh
and prev tests used to pick the defn from there
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They were originally ONLY defined in L0_perf_tensorrt_llm/test.sh and prev tests used to pick the defn from there
Do we do a source L0_perf_tensorrt_llm/test.sh
somewhere when running this test? I didn't see it in this bash script. Maybe on gitlab job side?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe because there is no set +e
so bash just ignore the error.
@@ -138,6 +145,42 @@ function kill_server { | |||
done | |||
} | |||
|
|||
function clone_tensorrt_llm_backend_repo { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the previous PR, I suggested moving these functions to qa/common/util.sh
but somehow they were deleted instead of moved.
#8009 (comment)
What does the PR do?
Fix L0_orca_trtllm which was broken due to new changes in the trtllm directory structure.
Checklist
<commit_type>: <Title>
Commit Type:
Check the conventional commit type
box here and add the label to the github PR.
Where should the reviewer start?
test.sh
Test plan:
NA
27767229
Caveats:
NA
Background
Test broke due to