-
Notifications
You must be signed in to change notification settings - Fork 2k
[None] [ci] Reorganize CMake and Python integration test infrastructure for C++ tests #6754
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
d3dad59
chore: Remove redundant check for "gpt_session" in generate_excluded_…
Funatiq 86497c4
[test] Refactor test structure by moving tests to unit_tests directory
Funatiq b50c5f2
[test] Move end-to-end tests to e2e_tests directory
Funatiq 6f9c207
[test] Enhance build configuration for C++ tests
Funatiq 7a0a9a8
[test] Improve C++ test fixtures and backup handling
Funatiq 627c012
[ci] Update L0_MergeRequest.groovy to reflect the new test directory …
Funatiq ae318a7
[test] Update test durations and timeout settings
Funatiq 6b6e905
[test] Move multi-GPU unit tests to separate directory
Funatiq 379f05a
[test] Add user buffer unit test to multi-GPU tests
Funatiq bb37754
[test] Refactor C++ test fixtures and improve build directory handling
Funatiq 57e2fa8
[chore] Fix typo in disaggExecutorTest
Funatiq cf1d790
fixup! [test] Update test durations and timeout settings
Funatiq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & | ||
| # AFFILIATES. All rights reserved. SPDX-License-Identifier: NVIDIA TensorRT | ||
| # Source Code License Agreement | ||
| # | ||
| # NVIDIA CORPORATION, its affiliates and licensors retain all intellectual | ||
| # property and proprietary rights in and to this material, related documentation | ||
| # and any modifications thereto. Any use, reproduction, disclosure or | ||
| # distribution of this material and related documentation without an express | ||
| # license agreement from NVIDIA CORPORATION or its affiliates is strictly | ||
| # prohibited. | ||
|
|
||
| add_subdirectory(batch_manager) | ||
| add_subdirectory(executor) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & | ||
| # AFFILIATES. All rights reserved. SPDX-License-Identifier: NVIDIA TensorRT | ||
| # Source Code License Agreement | ||
| # | ||
| # NVIDIA CORPORATION, its affiliates and licensors retain all intellectual | ||
| # property and proprietary rights in and to this material, related documentation | ||
| # and any modifications thereto. Any use, reproduction, disclosure or | ||
| # distribution of this material and related documentation without an express | ||
| # license agreement from NVIDIA CORPORATION or its affiliates is strictly | ||
| # prohibited. | ||
|
|
||
| add_subdirectory(kernels) | ||
|
|
||
| add_gtest(cacheTransceiverTest cacheTransceiverTest.cpp) | ||
| add_gtest(mpiUtilsTest mpiUtilsTest.cpp) | ||
| add_gtest(userBufferTest userBufferTest.cpp) |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & | ||
| # AFFILIATES. All rights reserved. SPDX-License-Identifier: NVIDIA TensorRT | ||
| # Source Code License Agreement | ||
| # | ||
| # NVIDIA CORPORATION, its affiliates and licensors retain all intellectual | ||
| # property and proprietary rights in and to this material, related documentation | ||
| # and any modifications thereto. Any use, reproduction, disclosure or | ||
| # distribution of this material and related documentation without an express | ||
| # license agreement from NVIDIA CORPORATION or its affiliates is strictly | ||
| # prohibited. | ||
|
|
||
| if(NOT ENABLE_MULTI_DEVICE EQUAL 0) | ||
| add_gtest(allReduceKernelTest allReduce/allReduceKernelTest.cu) | ||
| add_gtest(allReduceFusionTest allReduce/allReduceFusionTest.cu) | ||
| add_gtest(gemmAllReduceTest allReduce/gemmAllReduceTest.cu) | ||
| if(USING_OSS_CUTLASS_ALLREDUCE_GEMM) | ||
| target_link_libraries(gemmAllReduceTest PRIVATE ar_gemm_src) | ||
| target_compile_definitions(gemmAllReduceTest | ||
| PRIVATE USING_OSS_CUTLASS_ALLREDUCE_GEMM) | ||
| endif() | ||
| endif() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.