/* * 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. */ /*! \file temporary_array.h * \brief Container-like class temporary storage inside algorithms. */ #pragma once #include #if defined(_CCCL_IMPLICIT_SYSTEM_HEADER_GCC) # pragma GCC system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_CLANG) # pragma clang system_header #elif defined(_CCCL_IMPLICIT_SYSTEM_HEADER_MSVC) # pragma system_header #endif // no system header THRUST_NAMESPACE_BEGIN namespace detail { // Forward declare temporary_array, as it's used by the CUDA copy backend, which // is included in contiguous_storage's definition. template class temporary_array; } // namespace detail THRUST_NAMESPACE_END #include #include #include #include #include #include THRUST_NAMESPACE_BEGIN namespace detail { template class temporary_array : public contiguous_storage>> { private: typedef contiguous_storage>> super_t; // to help out the constructor typedef no_throw_allocator> alloc_type; public: typedef typename super_t::size_type size_type; _CCCL_HOST_DEVICE temporary_array(thrust::execution_policy& system); _CCCL_HOST_DEVICE temporary_array(thrust::execution_policy& system, size_type n); // provide a kill-switch to explicitly avoid initialization _CCCL_HOST_DEVICE temporary_array(int uninit, thrust::execution_policy& system, size_type n); template _CCCL_HOST_DEVICE temporary_array(thrust::execution_policy& system, InputIterator first, size_type n); template _CCCL_HOST_DEVICE temporary_array( thrust::execution_policy& system, thrust::execution_policy& input_system, InputIterator first, size_type n); template _CCCL_HOST_DEVICE temporary_array(thrust::execution_policy& system, InputIterator first, InputIterator last); template _CCCL_HOST_DEVICE temporary_array( thrust::execution_policy& system, thrust::execution_policy& input_system, InputIterator first, InputIterator last); _CCCL_HOST_DEVICE ~temporary_array(); }; // end temporary_array // XXX eliminate this when we do ranges for real template class tagged_iterator_range { public: typedef thrust::detail::tagged_iterator iterator; template tagged_iterator_range(const Ignored1&, const Ignored2&, Iterator first, Iterator last) : m_begin(first) , m_end(last) {} iterator begin() const { return m_begin; } iterator end() const { return m_end; } private: iterator m_begin, m_end; }; // if FromSystem is convertible to ToSystem, then just make a shallow // copy of the range. else, use a temporary_array // note that the resulting iterator is explicitly tagged with ToSystem either way template struct move_to_system_base : public eval_if<::cuda::std::is_convertible::value, identity_>, identity_::type, ToSystem>>> {}; template class move_to_system : public move_to_system_base::type { typedef typename move_to_system_base::type super_t; public: move_to_system(thrust::execution_policy& from_system, thrust::execution_policy& to_system, Iterator first, Iterator last) : super_t(to_system, from_system, first, last) {} }; } // namespace detail THRUST_NAMESPACE_END #include