-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix transform iterator for non-copy-constructible types (#3542)
Fixes: #3541 Co-authored-by: Michael Schellenberger Costa <[email protected]>
- Loading branch information
1 parent
0b5844f
commit 4567491
Showing
4 changed files
with
55 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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,12 @@ | ||
target_compile_options(${test_target} PRIVATE $<$<COMPILE_LANG_AND_ID:CUDA,NVIDIA>: --extended-lambda>) | ||
|
||
# this check is actually not correct, because we must check the host compiler, not the CXX compiler. | ||
# We rely on that those are usually the same ;) | ||
if ("Clang" STREQUAL "${CMAKE_CXX_COMPILER_ID}" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 13) | ||
# When clang >= 13 is used as host compiler, we get the following warning: | ||
# nvcc_internal_extended_lambda_implementation:312:22: error: definition of implicit copy constructor for '__nv_hdl_wrapper_t<false, true, false, __nv_dl_tag<void (*)(), &TestAddressStabilityLambda, 2>, int (const int &)>' is deprecated because it has a user-declared copy assignment operator [-Werror,-Wdeprecated-copy] | ||
# 312 | __nv_hdl_wrapper_t & operator=(const __nv_hdl_wrapper_t &in) = delete; | ||
# | ^ | ||
# Let's suppress it until NVBug 4980157 is resolved. | ||
target_compile_options(${test_target} PRIVATE $<$<COMPILE_LANG_AND_ID:CUDA,NVIDIA>: -Wno-deprecated-copy>) | ||
endif () |
This file contains 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,19 @@ | ||
#include <thrust/device_vector.h> | ||
#include <thrust/host_vector.h> | ||
#include <thrust/iterator/transform_iterator.h> | ||
#include <thrust/logical.h> | ||
|
||
#include <unittest/unittest.h> | ||
|
||
// see also: https://github.com/NVIDIA/cccl/issues/3541 | ||
void TestTransformWithLambda() | ||
{ | ||
auto l = [] __host__ __device__(int v) { return v < 4; }; | ||
thrust::host_vector<int> A{1, 2, 3, 4, 5, 6, 7}; | ||
ASSERT_EQUAL(thrust::any_of(A.begin(), A.end(), l), true); | ||
|
||
thrust::device_vector<int> B{1, 2, 3, 4, 5, 6, 7}; | ||
ASSERT_EQUAL(thrust::any_of(B.begin(), B.end(), l), true); | ||
} | ||
|
||
DECLARE_UNITTEST(TestTransformWithLambda); |
This file contains 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 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