-
Notifications
You must be signed in to change notification settings - Fork 289
Add cccl_add_xfail_compile_target_test CMake function
#6434
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
6 commits
Select commit
Hold shift + click to select a range
bf72454
Remove note about a resolved cmake bug. The issue has been fixed.
alliepiper 038b9cf
Add `cccl_add_xfail_compile_target_test` CMake function.
alliepiper 2f24422
Add error message parsing from source files.
alliepiper 60a435c
Add relevant source files to CONFIGURE_DEPENDS
alliepiper 2748bfa
Formatting.
alliepiper dd5cae1
Merge branch 'main' into xfail_test_util
alliepiper 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
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
43 changes: 28 additions & 15 deletions
43
cub/test/test_device_segmented_reduce_offset_type_fail.cu
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 |
|---|---|---|
| @@ -1,42 +1,55 @@ | ||
| // SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. | ||
| // SPDX-License-Identifier: BSD-3 | ||
|
|
||
| // %PARAM% TEST_ERR err 0:1:2:3:4:5 | ||
| // %PARAM% TEST_ERR err 0:1:2:3:4:5:6:7 | ||
|
|
||
| #include <cub/device/device_segmented_reduce.cuh> | ||
|
|
||
| template <typename T> | ||
| void mark_as_used(T&&) | ||
| {} | ||
|
|
||
| int main() | ||
| { | ||
| using offset_t = float; // error | ||
| // using offset_t = int; // ok | ||
| float *d_in{}, *d_out{}; | ||
| cub::KeyValuePair<float, float>* d_kv_out{}; | ||
| ::cuda::std::pair<float, float>* d_pair_out{}; | ||
| offset_t* d_offsets{}; | ||
| std::size_t temp_storage_bytes{}; | ||
| std::uint8_t* d_temp_storage{}; | ||
|
|
||
| // Only one of these is used per path, suppress undesired diagnostics: | ||
| mark_as_used(d_out); | ||
| mark_as_used(d_kv_out); | ||
| mark_as_used(d_pair_out); | ||
| mark_as_used(d_offsets); | ||
|
|
||
| #if TEST_ERR == 0 | ||
| // expected-error {{"Offset iterator type should be integral."}} | ||
| // expected-error-0 {{"Offset iterator value type should be integral."}} | ||
| cub::DeviceSegmentedReduce::Reduce( | ||
| d_temp_storage, temp_storage_bytes, d_in, d_out, 0, d_offsets, d_offsets + 1, ::cuda::minimum<>{}, 0); | ||
|
|
||
| #elif TEST_ERR == 1 | ||
| // expected-error {{"Offset iterator type should be integral."}} | ||
| // expected-error-1 {{"Offset iterator value type should be integral."}} | ||
| cub::DeviceSegmentedReduce::Sum(d_temp_storage, temp_storage_bytes, d_in, d_out, 0, d_offsets, d_offsets + 1); | ||
|
|
||
| #elif TEST_ERR == 2 | ||
| // expected-error {{"Offset iterator type should be integral."}} | ||
| // expected-error-2 {{"Offset iterator value type should be integral."}} | ||
| cub::DeviceSegmentedReduce::Min(d_temp_storage, temp_storage_bytes, d_in, d_out, 0, d_offsets, d_offsets + 1); | ||
|
|
||
| #elif TEST_ERR == 3 | ||
| // expected-error {{"Offset iterator type should be integral."}} | ||
| cub::DeviceSegmentedReduce::ArgMin(d_temp_storage, temp_storage_bytes, d_in, d_out, 0, d_offsets, d_offsets + 1); | ||
|
|
||
| #elif TEST_ERR == 4 | ||
| // expected-error {{"Offset iterator type should be integral."}} | ||
| // expected-error-3 {{"Offset iterator value type should be integral."}} | ||
| cub::DeviceSegmentedReduce::Max(d_temp_storage, temp_storage_bytes, d_in, d_out, 0, d_offsets, d_offsets + 1); | ||
|
|
||
| #elif TEST_ERR == 4 | ||
| // expected-error-4 {{"Output key type must be int."}} | ||
| cub::DeviceSegmentedReduce::ArgMin(d_temp_storage, temp_storage_bytes, d_in, d_kv_out, 0, d_offsets, d_offsets + 1); | ||
| #elif TEST_ERR == 5 | ||
| // expected-error {{"Offset iterator type should be integral."}} | ||
| cub::DeviceSegmentedReduce::ArgMax(d_temp_storage, temp_storage_bytes, d_in, d_out, 0, d_offsets, d_offsets + 1); | ||
| // expected-error-5 {{"Output key type must be int."}} | ||
| cub::DeviceSegmentedReduce::ArgMin(d_temp_storage, temp_storage_bytes, d_in, d_pair_out, 0, 1); | ||
| #elif TEST_ERR == 6 | ||
| // expected-error-6 {{"Output key type must be int."}} | ||
| cub::DeviceSegmentedReduce::ArgMax(d_temp_storage, temp_storage_bytes, d_in, d_kv_out, 0, d_offsets, d_offsets + 1); | ||
| #elif TEST_ERR == 7 | ||
| // expected-error-7 {{"Output key type must be int."}} | ||
| cub::DeviceSegmentedReduce::ArgMax(d_temp_storage, temp_storage_bytes, d_in, d_pair_out, 0, 1); | ||
| #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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| // %PARAM% TEST_ERR err 0:1:2:3 | ||
|
|
||
| // This compilation sometimes passes, sometimes fails. | ||
| // It's role is to ensure that exit code is not checked for regex matches and binary objects are cleaned | ||
| // before each test run. | ||
| // This allows the failure machinery to test for non-fatal warnings. | ||
| int main() | ||
| { | ||
| // Used if not specified otherwise: | ||
| // expected-error {{"fail generic"}} | ||
|
|
||
| #if TEST_ERR == 0 | ||
| # pragma message "fail zero" // expected-error-0 {{"fail zero"}} | ||
| #elif TEST_ERR == 1 | ||
| # pragma message "fail generic" | ||
| #elif TEST_ERR == 2 | ||
| static_assert(false, "fail two"); // expected-error-2 {{"fail two"}} | ||
| #elif TEST_ERR == 3 | ||
| static_assert(false, "fail generic"); | ||
| #endif | ||
| } |
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.