/* * Copyright 2021-2022 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 * Utilities for CUDA dynamic parallelism. */ #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 #include #include #include /** * \def THRUST_CDP_DISPATCH * * If CUDA Dynamic Parallelism / CUDA Nested Parallelism is available, always * run the parallel implementation. Otherwise, run the parallel implementation * when called from the host, and fallback to the sequential implementation on * the device. * * `par_impl` and `seq_impl` are blocks of C++ statements enclosed in * parentheses, similar to NV_IF_TARGET blocks: * * \code * THRUST_CDP_DISPATCH((launch_parallel_kernel();), (run_serial_impl();)); * \endcode */ #if defined(CUB_DETAIL_CDPv1) // Special case for NVCC -- need to inform the device path about the kernels // that are launched from the host path. # if defined(__CUDACC__) && defined(__CUDA_ARCH__) // seq_impl only used on platforms that do not support device synchronization. # define THRUST_CDP_DISPATCH(par_impl, seq_impl) \ if (false) \ { /* Without this, the device pass won't compile any kernels. */ \ NV_IF_TARGET(NV_ANY_TARGET, par_impl); \ } \ NV_IF_TARGET(NV_PROVIDES_SM_90, seq_impl, par_impl) # else // NVCC device pass // seq_impl only used on platforms that do not support device synchronization. # define THRUST_CDP_DISPATCH(par_impl, seq_impl) NV_IF_TARGET(NV_PROVIDES_SM_90, seq_impl, par_impl) # endif // NVCC device pass #else // CDPv1 unavailable. Always fallback to serial on device: // Special case for NVCC -- need to inform the device path about the kernels // that are launched from the host path. # if defined(__CUDACC__) && defined(__CUDA_ARCH__) // Device-side launch not supported, fallback to sequential in device code. # define THRUST_CDP_DISPATCH(par_impl, seq_impl) \ if (false) \ { /* Without this, the device pass won't compile any kernels. */ \ NV_IF_TARGET(NV_ANY_TARGET, par_impl); \ } \ NV_IF_TARGET(NV_IS_HOST, par_impl, seq_impl) # else // !(NVCC device pass): # define THRUST_CDP_DISPATCH(par_impl, seq_impl) NV_IF_TARGET(NV_IS_HOST, par_impl, seq_impl) # endif // NVCC device pass #endif // CDP version