/* * 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. */ #pragma once /*! \file thrust/system/omp/execution_policy.h * \brief Execution policies for Thrust's OpenMP system. */ #include // get the execution policies definitions first #include // get the definition of par #include // now get all the algorithm definitions #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // define these entities here for the purpose of Doxygenating them // they are actually defined elsewhere #if 0 namespace thrust { namespace system { namespace omp { /*! \addtogroup execution_policies * \{ */ /*! \p thrust::omp::execution_policy is the base class for all Thrust parallel execution * policies which are derived from Thrust's OpenMP backend system. */ template struct execution_policy : thrust::execution_policy {}; /*! \p omp::tag is a type representing Thrust's standard C++ backend system in C++'s type system. * Iterators "tagged" with a type which is convertible to \p omp::tag assert that they may be * "dispatched" to algorithm implementations in the \p omp system. */ struct tag : thrust::system::omp::execution_policy { unspecified }; /*! \p thrust::omp::par is the parallel execution policy associated with Thrust's OpenMP * backend system. * * Instead of relying on implicit algorithm dispatch through iterator system tags, users may * directly target Thrust's OpenMP backend system by providing \p thrust::omp::par as an algorithm * parameter. * * Explicit dispatch can be useful in avoiding the introduction of data copies into containers such * as \p thrust::omp::vector. * * The type of \p thrust::omp::par is implementation-defined. * * The following code snippet demonstrates how to use \p thrust::omp::par to explicitly dispatch an * invocation of \p thrust::for_each to the OpenMP backend system: * * \code * #include * #include * #include * * struct printf_functor * { * __host__ __device__ * void operator()(int x) * { * printf("%d\n"); * } * }; * ... * int vec[3]; * vec[0] = 0; vec[1] = 1; vec[2] = 2; * * thrust::for_each(thrust::omp::par, vec.begin(), vec.end(), printf_functor()); * * // 0 1 2 is printed to standard output in some unspecified order * \endcode */ static const unspecified par; /*! \} */ } // end cpp } // end system } // end thrust #endif