We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How can one change the Acc (CPU/CPU-OMP/CPU-Threads/CUDA)?
Acc
Eg simply changing Dalpaka_ACC_CPU_B_SEQ_T_SEQ_ENABLE=ON to -DALPAKA_ACC_CPU_B_OMP2_T_SEQ_ENABLED=ON doesn't work for me:
Dalpaka_ACC_CPU_B_SEQ_T_SEQ_ENABLE=ON
-DALPAKA_ACC_CPU_B_OMP2_T_SEQ_ENABLED=ON
mkdir -p build && cd build && \ cmake ../all -DALPAKA_ACC_CPU_B_OMP2_T_SEQ_ENABLED=ON -DCPM_SOURCE_CACHE=~/.cache/cpm && \ cmake --build . -j --target KitGenBenchExamplePlainMalloc KitGenBenchExampleSimpleMallocMC ```
The text was updated successfully, but these errors were encountered:
Typo:
< -DALPAKA_ACC_CPU_B_OMP2_T_SEQ_ENABLED=ON > -DALPAKA_ACC_CPU_B_OMP2_T_SEQ_ENABLE=ON
For CUDA you probably have to add alpaka_ACC_GPU_CUDA_ONLY_MODE because we use CUDA-specific code in kernels.
alpaka_ACC_GPU_CUDA_ONLY_MODE
Sorry, something went wrong.
No branches or pull requests
How can one change the
Acc
(CPU/CPU-OMP/CPU-Threads/CUDA)?Eg simply changing
Dalpaka_ACC_CPU_B_SEQ_T_SEQ_ENABLE=ON
to-DALPAKA_ACC_CPU_B_OMP2_T_SEQ_ENABLED=ON
doesn't work for me:The text was updated successfully, but these errors were encountered: