Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 36 additions & 19 deletions thrust/thrust/system/detail/generic/adjacent_difference.h
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
/*
* Copyright 2008-2013 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.
*/
// SPDX-FileCopyrightText: Copyright (c) 2008-2013, NVIDIA Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

/*! \file adjacent_difference.h
* \brief Generic implementation of adjacent_difference.
Expand All @@ -29,25 +16,55 @@
#elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC)
# pragma system_header
#endif // no system header
#include <thrust/adjacent_difference.h>
#include <thrust/detail/temporary_array.h>
#include <thrust/functional.h>
#include <thrust/iterator/iterator_traits.h>
#include <thrust/system/detail/generic/tag.h>
#include <thrust/transform.h>

THRUST_NAMESPACE_BEGIN
namespace system::detail::generic
{

template <typename DerivedPolicy, typename InputIterator, typename OutputIterator>
_CCCL_HOST_DEVICE OutputIterator adjacent_difference(
thrust::execution_policy<DerivedPolicy>& exec, InputIterator first, InputIterator last, OutputIterator result);
thrust::execution_policy<DerivedPolicy>& exec, InputIterator first, InputIterator last, OutputIterator result)
{
using InputType = thrust::detail::it_value_t<InputIterator>;
::cuda::std::minus<InputType> binary_op;

return thrust::adjacent_difference(exec, first, last, result, binary_op);
} // end adjacent_difference()

template <typename DerivedPolicy, typename InputIterator, typename OutputIterator, typename BinaryFunction>
_CCCL_HOST_DEVICE OutputIterator adjacent_difference(
thrust::execution_policy<DerivedPolicy>& exec,
InputIterator first,
InputIterator last,
OutputIterator result,
BinaryFunction binary_op);
BinaryFunction binary_op)
{
using InputType = thrust::detail::it_value_t<InputIterator>;

if (first == last)
{
// empty range, nothing to do
return result;
}
else
{
// an in-place operation is requested, copy the input and call the entry point
// XXX a special-purpose kernel would be faster here since
// only block boundaries need to be copied
thrust::detail::temporary_array<InputType, DerivedPolicy> input_copy(exec, first, last);

*result = *first;
thrust::transform(exec, input_copy.begin() + 1, input_copy.end(), input_copy.begin(), result + 1, binary_op);
}

return result + (last - first);
}

} // namespace system::detail::generic
THRUST_NAMESPACE_END

#include <thrust/system/detail/generic/adjacent_difference.inl>
79 changes: 0 additions & 79 deletions thrust/thrust/system/detail/generic/adjacent_difference.inl

This file was deleted.

Loading
Loading