Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/NVIDIA/thrust.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'testing/zip_iterator.cu')
-rw-r--r--testing/zip_iterator.cu6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/zip_iterator.cu b/testing/zip_iterator.cu
index e5329fbc..09cbdcd2 100644
--- a/testing/zip_iterator.cu
+++ b/testing/zip_iterator.cu
@@ -285,9 +285,9 @@ void TestZipIteratorCopy(void)
sequence(input0.begin(), input0.end(), T{0});
sequence(input1.begin(), input1.end(), T{13});
- copy( make_zip_iterator(make_tuple(input0.begin(), input1.begin())),
- make_zip_iterator(make_tuple(input0.end(), input1.end())),
- make_zip_iterator(make_tuple(output0.begin(), output1.begin())));
+ thrust::copy( make_zip_iterator(make_tuple(input0.begin(), input1.begin())),
+ make_zip_iterator(make_tuple(input0.end(), input1.end())),
+ make_zip_iterator(make_tuple(output0.begin(), output1.begin())));
ASSERT_EQUAL(input0, output0);
ASSERT_EQUAL(input1, output1);