Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build alpaka code in GPU-only mode [14.0.x] #9125

Commits on Apr 7, 2024

  1. Build alpaka code in GPU-only mode

    Build alpaka device code for the CUDA and ROCm back-ends in "GPU only" mode.
    In this mode, functions marked as ALPAKA_FN_ACC are marked as __device__
    functions, and are compiled only for the corresponding GPU device back-ends.
    
    Currently, functions marked as ALPAKA_FN_ACC are marked as __host__ __device__
    functions, and may be compiled for both device and host back-ends. The latter
    leads to linker errors in kernels that use device symbols like threadIdx,
    blockIdx, etc. that are compiled for the ROCm back-end.
    fwyzard committed Apr 7, 2024
    Configuration menu
    Copy the full SHA
    efea939 View commit details
    Browse the repository at this point in the history