thrust::set_difference_by_key#
Overloads#
set_difference_by_key(exec, keys_first1, keys_last1, keys_first2, keys_last2, values_first1, values_first2, keys_result, values_result)#
-
template<typename DerivedPolicy, typename InputIterator1, typename InputIterator2, typename InputIterator3, typename InputIterator4, typename OutputIterator1, typename OutputIterator2>
thrust::pair<OutputIterator1, OutputIterator2> thrust::set_difference_by_key( - const thrust::detail::execution_policy_base<DerivedPolicy> &exec,
- InputIterator1 keys_first1,
- InputIterator1 keys_last1,
- InputIterator2 keys_first2,
- InputIterator2 keys_last2,
- InputIterator3 values_first1,
- InputIterator4 values_first2,
- OutputIterator1 keys_result,
- OutputIterator2 values_result,
set_difference_by_keyperforms a key-value difference operation from set theory.set_difference_by_keyconstructs a sorted range that is the difference of the sorted ranges[keys_first1, keys_last1)and[keys_first2, keys_last2). Associated with each element from the input and output key ranges is a value element. The associated input value ranges need not be sorted.In the simplest case,
set_difference_by_keyperforms the “difference” operation from set theory: the keys output range contains a copy of every element that is contained in[keys_first1, keys_last1)and not contained in[keys_first2, keys_last2). The general case is more complicated, because the input ranges may contain duplicate elements. The generalization is that if[keys_first1, keys_last1)containsmelements that are equivalent to each other and if[keys_first2, keys_last2)containsnelements that are equivalent to them, the lastmax(m-n,0)elements from[keys_first1, keys_last1)range shall be copied to the output range.Each time a key element is copied from
[keys_first1, keys_last1)or[keys_first2, keys_last2)is copied to the keys output range, the corresponding value element is copied from the corresponding values input range (beginning atvalues_first1orvalues_first2) to the values output range.This version of
set_difference_by_keycompares key elements usingoperator<.The algorithm’s execution is parallelized as determined by
exec.The following code snippet demonstrates how to use
set_difference_by_keyto compute the set difference of two sets of integers sorted in ascending order with their values using thethrust::hostexecution policy for parallelization:#include <thrust/set_operations.h> #include <thrust/execution_policy.h> ... int A_keys[6] = {0, 1, 3, 4, 5, 6, 9}; int A_vals[6] = {0, 0, 0, 0, 0, 0, 0}; int B_keys[5] = {1, 3, 5, 7, 9}; int B_vals[5] = {1, 1, 1, 1, 1}; int keys_result[3]; int vals_result[3]; thrust::pair<int*,int*> end = thrust::set_difference_by_key(thrust::host, A_keys, A_keys + 6, B_keys, B_keys + 5, A_vals, B_vals, keys_result, vals_result); // keys_result is now {0, 4, 6} // vals_result is now {0, 0, 0}
See also
See also
See also
See also
See also
- Parameters:
exec – The execution policy to use for parallelization.
keys_first1 – The beginning of the first input range of keys.
keys_last1 – The end of the first input range of keys.
keys_first2 – The beginning of the second input range of keys.
keys_last2 – The end of the second input range of keys.
values_first1 – The beginning of the first input range of values.
values_first2 – The beginning of the first input range of values.
keys_result – The beginning of the output range of keys.
values_result – The beginning of the output range of values.
- Template Parameters:
DerivedPolicy – The name of the derived execution policy.
InputIterator1 – is a model of Input Iterator,
InputIterator1andInputIterator2have the samevalue_type,InputIterator1'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator1'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator1'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator2 – is a model of Input Iterator,
InputIterator2andInputIterator1have the samevalue_type,InputIterator2'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator2'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator2'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator3 – is a model of Input Iterator, and
InputIterator3'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.InputIterator4 – is a model of Input Iterator, and
InputIterator4'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.OutputIterator1 – is a model of Output Iterator.
OutputIterator2 – is a model of Output Iterator.
- Returns:
A
pairpsuch thatp.firstis the end of the output range of keys, and such thatp.secondis the end of the output range of values.- Pre:
The ranges
[keys_first1, keys_last1)and[keys_first2, keys_last2)shall be sorted with respect tooperator<.- Pre:
The resulting ranges shall not overlap with any input range.
set_difference_by_key(keys_first1, keys_last1, keys_first2, keys_last2, values_first1, values_first2, keys_result, values_result)#
-
template<typename InputIterator1, typename InputIterator2, typename InputIterator3, typename InputIterator4, typename OutputIterator1, typename OutputIterator2>
thrust::pair<OutputIterator1, OutputIterator2> thrust::set_difference_by_key( - InputIterator1 keys_first1,
- InputIterator1 keys_last1,
- InputIterator2 keys_first2,
- InputIterator2 keys_last2,
- InputIterator3 values_first1,
- InputIterator4 values_first2,
- OutputIterator1 keys_result,
- OutputIterator2 values_result,
set_difference_by_keyperforms a key-value difference operation from set theory.set_difference_by_keyconstructs a sorted range that is the difference of the sorted ranges[keys_first1, keys_last1)and[keys_first2, keys_last2). Associated with each element from the input and output key ranges is a value element. The associated input value ranges need not be sorted.In the simplest case,
set_difference_by_keyperforms the “difference” operation from set theory: the keys output range contains a copy of every element that is contained in[keys_first1, keys_last1)and not contained in[keys_first2, keys_last2). The general case is more complicated, because the input ranges may contain duplicate elements. The generalization is that if[keys_first1, keys_last1)containsmelements that are equivalent to each other and if[keys_first2, keys_last2)containsnelements that are equivalent to them, the lastmax(m-n,0)elements from[keys_first1, keys_last1)range shall be copied to the output range.Each time a key element is copied from
[keys_first1, keys_last1)or[keys_first2, keys_last2)is copied to the keys output range, the corresponding value element is copied from the corresponding values input range (beginning atvalues_first1orvalues_first2) to the values output range.This version of
set_difference_by_keycompares key elements usingoperator<.The following code snippet demonstrates how to use
set_difference_by_keyto compute the set difference of two sets of integers sorted in ascending order with their values.#include <thrust/set_operations.h> ... int A_keys[6] = {0, 1, 3, 4, 5, 6, 9}; int A_vals[6] = {0, 0, 0, 0, 0, 0, 0}; int B_keys[5] = {1, 3, 5, 7, 9}; int B_vals[5] = {1, 1, 1, 1, 1}; int keys_result[3]; int vals_result[3]; thrust::pair<int*,int*> end = thrust::set_difference_by_key(A_keys, A_keys + 6, B_keys, B_keys + 5, A_vals, B_vals, keys_result, vals_result); // keys_result is now {0, 4, 6} // vals_result is now {0, 0, 0}
See also
See also
See also
See also
See also
- Parameters:
keys_first1 – The beginning of the first input range of keys.
keys_last1 – The end of the first input range of keys.
keys_first2 – The beginning of the second input range of keys.
keys_last2 – The end of the second input range of keys.
values_first1 – The beginning of the first input range of values.
values_first2 – The beginning of the first input range of values.
keys_result – The beginning of the output range of keys.
values_result – The beginning of the output range of values.
- Template Parameters:
InputIterator1 – is a model of Input Iterator,
InputIterator1andInputIterator2have the samevalue_type,InputIterator1'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator1'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator1'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator2 – is a model of Input Iterator,
InputIterator2andInputIterator1have the samevalue_type,InputIterator2'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator2'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator2'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator3 – is a model of Input Iterator, and
InputIterator3'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.InputIterator4 – is a model of Input Iterator, and
InputIterator4'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.OutputIterator1 – is a model of Output Iterator.
OutputIterator2 – is a model of Output Iterator.
- Returns:
A
pairpsuch thatp.firstis the end of the output range of keys, and such thatp.secondis the end of the output range of values.- Pre:
The ranges
[keys_first1, keys_last1)and[keys_first2, keys_last2)shall be sorted with respect tooperator<.- Pre:
The resulting ranges shall not overlap with any input range.
set_difference_by_key(exec, keys_first1, keys_last1, keys_first2, keys_last2, values_first1, values_first2, keys_result, values_result, comp)#
-
template<typename DerivedPolicy, typename InputIterator1, typename InputIterator2, typename InputIterator3, typename InputIterator4, typename OutputIterator1, typename OutputIterator2, typename StrictWeakCompare>
thrust::pair<OutputIterator1, OutputIterator2> thrust::set_difference_by_key( - const thrust::detail::execution_policy_base<DerivedPolicy> &exec,
- InputIterator1 keys_first1,
- InputIterator1 keys_last1,
- InputIterator2 keys_first2,
- InputIterator2 keys_last2,
- InputIterator3 values_first1,
- InputIterator4 values_first2,
- OutputIterator1 keys_result,
- OutputIterator2 values_result,
- StrictWeakCompare comp,
set_difference_by_keyperforms a key-value difference operation from set theory.set_difference_by_keyconstructs a sorted range that is the difference of the sorted ranges[keys_first1, keys_last1)and[keys_first2, keys_last2). Associated with each element from the input and output key ranges is a value element. The associated input value ranges need not be sorted.In the simplest case,
set_difference_by_keyperforms the “difference” operation from set theory: the keys output range contains a copy of every element that is contained in[keys_first1, keys_last1)and not contained in[keys_first2, keys_last2). The general case is more complicated, because the input ranges may contain duplicate elements. The generalization is that if[keys_first1, keys_last1)containsmelements that are equivalent to each other and if[keys_first2, keys_last2)containsnelements that are equivalent to them, the lastmax(m-n,0)elements from[keys_first1, keys_last1)range shall be copied to the output range.Each time a key element is copied from
[keys_first1, keys_last1)or[keys_first2, keys_last2)is copied to the keys output range, the corresponding value element is copied from the corresponding values input range (beginning atvalues_first1orvalues_first2) to the values output range.This version of
set_difference_by_keycompares key elements using a function objectcomp.The algorithm’s execution is parallelized as determined by
exec.The following code snippet demonstrates how to use
set_difference_by_keyto compute the set difference of two sets of integers sorted in descending order with their values using thethrust::hostexecution policy for parallelization:#include <thrust/set_operations.h> #include <thrust/functional.h> #include <thrust/execution_policy.h> ... int A_keys[6] = {9, 6, 5, 4, 3, 1, 0}; int A_vals[6] = {0, 0, 0, 0, 0, 0, 0}; int B_keys[5] = {9, 7, 5, 3, 1}; int B_vals[5] = {1, 1, 1, 1, 1}; int keys_result[3]; int vals_result[3]; thrust::pair<int*,int*> end = thrust::set_difference_by_key(thrust::host, A_keys, A_keys + 6, B_keys, B_keys + 5, A_vals, B_vals, keys_result, vals_result, ::cuda::std::greater<int>()); // keys_result is now {0, 4, 6} // vals_result is now {0, 0, 0}
See also
See also
See also
See also
See also
- Parameters:
exec – The execution policy to use for parallelization.
keys_first1 – The beginning of the first input range of keys.
keys_last1 – The end of the first input range of keys.
keys_first2 – The beginning of the second input range of keys.
keys_last2 – The end of the second input range of keys.
values_first1 – The beginning of the first input range of values.
values_first2 – The beginning of the first input range of values.
keys_result – The beginning of the output range of keys.
values_result – The beginning of the output range of values.
comp – Comparison operator.
- Template Parameters:
DerivedPolicy – The name of the derived execution policy.
InputIterator1 – is a model of Input Iterator,
InputIterator1andInputIterator2have the samevalue_type,InputIterator1'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator1'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator1'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator2 – is a model of Input Iterator,
InputIterator2andInputIterator1have the samevalue_type,InputIterator2'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator2'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator2'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator3 – is a model of Input Iterator, and
InputIterator3'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.InputIterator4 – is a model of Input Iterator, and
InputIterator4'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.OutputIterator1 – is a model of Output Iterator.
OutputIterator2 – is a model of Output Iterator.
StrictWeakCompare – is a model of Strict Weak Ordering.
- Returns:
A
pairpsuch thatp.firstis the end of the output range of keys, and such thatp.secondis the end of the output range of values.- Pre:
The ranges
[keys_first1, keys_last1)and[keys_first2, keys_last2)shall be sorted with respect tocomp.- Pre:
The resulting ranges shall not overlap with any input range.
set_difference_by_key(keys_first1, keys_last1, keys_first2, keys_last2, values_first1, values_first2, keys_result, values_result, comp)#
-
template<typename InputIterator1, typename InputIterator2, typename InputIterator3, typename InputIterator4, typename OutputIterator1, typename OutputIterator2, typename StrictWeakCompare>
thrust::pair<OutputIterator1, OutputIterator2> thrust::set_difference_by_key( - InputIterator1 keys_first1,
- InputIterator1 keys_last1,
- InputIterator2 keys_first2,
- InputIterator2 keys_last2,
- InputIterator3 values_first1,
- InputIterator4 values_first2,
- OutputIterator1 keys_result,
- OutputIterator2 values_result,
- StrictWeakCompare comp,
set_difference_by_keyperforms a key-value difference operation from set theory.set_difference_by_keyconstructs a sorted range that is the difference of the sorted ranges[keys_first1, keys_last1)and[keys_first2, keys_last2). Associated with each element from the input and output key ranges is a value element. The associated input value ranges need not be sorted.In the simplest case,
set_difference_by_keyperforms the “difference” operation from set theory: the keys output range contains a copy of every element that is contained in[keys_first1, keys_last1)and not contained in[keys_first2, keys_last2). The general case is more complicated, because the input ranges may contain duplicate elements. The generalization is that if[keys_first1, keys_last1)containsmelements that are equivalent to each other and if[keys_first2, keys_last2)containsnelements that are equivalent to them, the lastmax(m-n,0)elements from[keys_first1, keys_last1)range shall be copied to the output range.Each time a key element is copied from
[keys_first1, keys_last1)or[keys_first2, keys_last2)is copied to the keys output range, the corresponding value element is copied from the corresponding values input range (beginning atvalues_first1orvalues_first2) to the values output range.This version of
set_difference_by_keycompares key elements using a function objectcomp.The following code snippet demonstrates how to use
set_difference_by_keyto compute the set difference of two sets of integers sorted in descending order with their values.#include <thrust/set_operations.h> #include <thrust/functional.h> ... int A_keys[6] = {9, 6, 5, 4, 3, 1, 0}; int A_vals[6] = {0, 0, 0, 0, 0, 0, 0}; int B_keys[5] = {9, 7, 5, 3, 1}; int B_vals[5] = {1, 1, 1, 1, 1}; int keys_result[3]; int vals_result[3]; thrust::pair<int*,int*> end = thrust::set_difference_by_key(A_keys, A_keys + 6, B_keys, B_keys + 5, A_vals, B_vals, keys_result, vals_result, ::cuda::std::greater<int>()); // keys_result is now {0, 4, 6} // vals_result is now {0, 0, 0}
See also
See also
See also
See also
See also
- Parameters:
keys_first1 – The beginning of the first input range of keys.
keys_last1 – The end of the first input range of keys.
keys_first2 – The beginning of the second input range of keys.
keys_last2 – The end of the second input range of keys.
values_first1 – The beginning of the first input range of values.
values_first2 – The beginning of the first input range of values.
keys_result – The beginning of the output range of keys.
values_result – The beginning of the output range of values.
comp – Comparison operator.
- Template Parameters:
InputIterator1 – is a model of Input Iterator,
InputIterator1andInputIterator2have the samevalue_type,InputIterator1'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator1'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator1'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator2 – is a model of Input Iterator,
InputIterator2andInputIterator1have the samevalue_type,InputIterator2'svalue_typeis a model of LessThan Comparable, the ordering onInputIterator2'svalue_typeis a strict weak ordering, as defined in the LessThan Comparable requirements, andInputIterator2'svalue_typeis convertible to a type inOutputIterator'sset ofvalue_types.InputIterator3 – is a model of Input Iterator, and
InputIterator3'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.InputIterator4 – is a model of Input Iterator, and
InputIterator4'svalue_typeis convertible to a type inOutputIterator2'sset ofvalue_types.OutputIterator1 – is a model of Output Iterator.
OutputIterator2 – is a model of Output Iterator.
StrictWeakCompare – is a model of Strict Weak Ordering.
- Returns:
A
pairpsuch thatp.firstis the end of the output range of keys, and such thatp.secondis the end of the output range of values.- Pre:
The ranges
[keys_first1, keys_last1)and[keys_first2, keys_last2)shall be sorted with respect tocomp.- Pre:
The resulting ranges shall not overlap with any input range.