/* * Copyright 2008-2012 NVIDIA Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /*! \file unique.inl * \brief Inline file for unique.h. */ #pragma once #include #include #include #include #include #include #include #include #include #include namespace thrust { namespace system { namespace detail { namespace generic { template ForwardIterator unique(thrust::execution_policy &exec, ForwardIterator first, ForwardIterator last) { typedef typename thrust::iterator_traits::value_type InputType; return thrust::unique(exec, first, last, thrust::equal_to()); } // end unique() template ForwardIterator unique(thrust::execution_policy &exec, ForwardIterator first, ForwardIterator last, BinaryPredicate binary_pred) { typedef typename thrust::iterator_traits::value_type InputType; thrust::detail::temporary_array input(exec, first, last); return thrust::unique_copy(exec, input.begin(), input.end(), first, binary_pred); } // end unique() template OutputIterator unique_copy(thrust::execution_policy &exec, InputIterator first, InputIterator last, OutputIterator output) { typedef typename thrust::iterator_value::type value_type; return thrust::unique_copy(exec, first,last,output,thrust::equal_to()); } // end unique_copy() template OutputIterator unique_copy(thrust::execution_policy &exec, InputIterator first, InputIterator last, OutputIterator output, BinaryPredicate binary_pred) { // empty sequence if(first == last) return output; thrust::detail::temporary_array stencil(exec, thrust::distance(first, last)); // mark first element in each group stencil[0] = 1; thrust::transform(exec, first, last - 1, first + 1, stencil.begin() + 1, thrust::detail::not2(binary_pred)); return thrust::copy_if(exec, first, last, stencil.begin(), output, thrust::identity()); } // end unique_copy() } // end namespace generic } // end namespace detail } // end namespace system } // end namespace thrust