forked from NVIDIA/thrust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add default ctor to transform[_input]_output_iterator and add test
- Loading branch information
Showing
3 changed files
with
181 additions
and
136 deletions.
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 |
---|---|---|
@@ -1,91 +1,133 @@ | ||
#include <unittest/unittest.h> | ||
#include <thrust/iterator/transform_output_iterator.h> | ||
|
||
#include <thrust/copy.h> | ||
#include <thrust/reduce.h> | ||
#include <thrust/device_vector.h> | ||
#include <thrust/functional.h> | ||
#include <thrust/sequence.h> | ||
#include <thrust/host_vector.h> | ||
#include <thrust/iterator/counting_iterator.h> | ||
#include <thrust/iterator/discard_iterator.h> | ||
#include <thrust/iterator/transform_output_iterator.h> | ||
#include <thrust/reduce.h> | ||
#include <thrust/sequence.h> | ||
#include <thrust/sort.h> | ||
|
||
#include <unittest/random.h> | ||
#include <unittest/unittest.h> | ||
|
||
template <class Vector> | ||
void TestTransformOutputIterator(void) | ||
{ | ||
typedef typename Vector::value_type T; | ||
typedef typename Vector::value_type T; | ||
|
||
typedef thrust::square<T> UnaryFunction; | ||
typedef typename Vector::iterator Iterator; | ||
|
||
typedef thrust::square<T> UnaryFunction; | ||
typedef typename Vector::iterator Iterator; | ||
Vector input(4); | ||
Vector output(4); | ||
|
||
Vector input(4); | ||
Vector output(4); | ||
|
||
// initialize input | ||
thrust::sequence(input.begin(), input.end(), T{1}); | ||
|
||
// construct transform_iterator | ||
thrust::transform_output_iterator<UnaryFunction, Iterator> output_iter(output.begin(), UnaryFunction()); | ||
// initialize input | ||
thrust::sequence(input.begin(), input.end(), T{1}); | ||
|
||
thrust::copy(input.begin(), input.end(), output_iter); | ||
// construct transform_iterator | ||
thrust::transform_output_iterator<UnaryFunction, Iterator> output_iter(output.begin(), | ||
UnaryFunction()); | ||
|
||
Vector gold_output(4); | ||
gold_output[0] = 1; | ||
gold_output[1] = 4; | ||
gold_output[2] = 9; | ||
gold_output[3] = 16; | ||
thrust::copy(input.begin(), input.end(), output_iter); | ||
|
||
ASSERT_EQUAL(output, gold_output); | ||
Vector gold_output(4); | ||
gold_output[0] = 1; | ||
gold_output[1] = 4; | ||
gold_output[2] = 9; | ||
gold_output[3] = 16; | ||
|
||
ASSERT_EQUAL(output, gold_output); | ||
} | ||
DECLARE_VECTOR_UNITTEST(TestTransformOutputIterator); | ||
|
||
template <class Vector> | ||
void TestMakeTransformOutputIterator(void) | ||
{ | ||
typedef typename Vector::value_type T; | ||
|
||
typedef thrust::square<T> UnaryFunction; | ||
|
||
Vector input(4); | ||
Vector output(4); | ||
|
||
// initialize input | ||
thrust::sequence(input.begin(), input.end(), 1); | ||
|
||
thrust::copy(input.begin(), input.end(), | ||
thrust::make_transform_output_iterator(output.begin(), UnaryFunction())); | ||
|
||
Vector gold_output(4); | ||
gold_output[0] = 1; | ||
gold_output[1] = 4; | ||
gold_output[2] = 9; | ||
gold_output[3] = 16; | ||
ASSERT_EQUAL(output, gold_output); | ||
typedef typename Vector::value_type T; | ||
|
||
typedef thrust::square<T> UnaryFunction; | ||
|
||
Vector input(4); | ||
Vector output(4); | ||
|
||
// initialize input | ||
thrust::sequence(input.begin(), input.end(), 1); | ||
|
||
thrust::copy(input.begin(), | ||
input.end(), | ||
thrust::make_transform_output_iterator(output.begin(), UnaryFunction())); | ||
|
||
Vector gold_output(4); | ||
gold_output[0] = 1; | ||
gold_output[1] = 4; | ||
gold_output[2] = 9; | ||
gold_output[3] = 16; | ||
ASSERT_EQUAL(output, gold_output); | ||
} | ||
DECLARE_VECTOR_UNITTEST(TestMakeTransformOutputIterator); | ||
|
||
template <typename T> | ||
struct TestTransformOutputIteratorScan | ||
{ | ||
void operator()(const size_t n) | ||
{ | ||
thrust::host_vector<T> h_data = unittest::random_samples<T>(n); | ||
thrust::device_vector<T> d_data = h_data; | ||
|
||
thrust::host_vector<T> h_result(n); | ||
thrust::device_vector<T> d_result(n); | ||
|
||
// run on host | ||
thrust::inclusive_scan(thrust::make_transform_iterator(h_data.begin(), thrust::negate<T>()), | ||
thrust::make_transform_iterator(h_data.end(), thrust::negate<T>()), | ||
h_result.begin()); | ||
// run on device | ||
thrust::inclusive_scan(d_data.begin(), d_data.end(), | ||
thrust::make_transform_output_iterator( | ||
d_result.begin(), thrust::negate<T>())); | ||
|
||
|
||
ASSERT_EQUAL(h_result, d_result); | ||
} | ||
void operator()(const size_t n) | ||
{ | ||
thrust::host_vector<T> h_data = unittest::random_samples<T>(n); | ||
thrust::device_vector<T> d_data = h_data; | ||
|
||
thrust::host_vector<T> h_result(n); | ||
thrust::device_vector<T> d_result(n); | ||
|
||
// run on host | ||
thrust::inclusive_scan(thrust::make_transform_iterator(h_data.begin(), thrust::negate<T>()), | ||
thrust::make_transform_iterator(h_data.end(), thrust::negate<T>()), | ||
h_result.begin()); | ||
// run on device | ||
thrust::inclusive_scan(d_data.begin(), | ||
d_data.end(), | ||
thrust::make_transform_output_iterator(d_result.begin(), | ||
thrust::negate<T>())); | ||
|
||
ASSERT_EQUAL(h_result, d_result); | ||
} | ||
}; | ||
VariableUnitTest<TestTransformOutputIteratorScan, SignedIntegralTypes> TestTransformOutputIteratorScanInstance; | ||
VariableUnitTest<TestTransformOutputIteratorScan, SignedIntegralTypes> | ||
TestTransformOutputIteratorScanInstance; | ||
|
||
template <typename T> | ||
struct TestTransformOutputIteratorReduceByKey | ||
{ | ||
void operator()(const size_t n) | ||
{ | ||
thrust::host_vector<T> h_keys = unittest::random_samples<T>(n); | ||
thrust::sort(h_keys.begin(), h_keys.end()); | ||
thrust::device_vector<T> d_keys = h_keys; | ||
|
||
thrust::host_vector<T> h_values = unittest::random_samples<T>(n); | ||
thrust::device_vector<T> d_values = h_values; | ||
|
||
thrust::host_vector<T> h_result(n); | ||
thrust::device_vector<T> d_result(n); | ||
|
||
// run on host | ||
thrust::reduce_by_key(thrust::host, | ||
h_keys.begin(), | ||
h_keys.end(), | ||
thrust::make_transform_iterator(h_values.begin(), thrust::negate<T>()), | ||
thrust::discard_iterator<T>{}, | ||
h_result.begin()); | ||
// run on device | ||
thrust::reduce_by_key(thrust::device, | ||
d_keys.begin(), | ||
d_keys.end(), | ||
d_values.begin(), | ||
thrust::discard_iterator<T>{}, | ||
thrust::make_transform_output_iterator(d_result.begin(), | ||
thrust::negate<T>())); | ||
|
||
ASSERT_EQUAL(h_result, d_result); | ||
} | ||
}; | ||
VariableUnitTest<TestTransformOutputIteratorReduceByKey, SignedIntegralTypes> | ||
TestTransformOutputIteratorReduceByKeyInstance; |
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
Oops, something went wrong.