Performance portability study of epistasis detection using SYCL on NVIDIA GPU
Oak Ridge National Laboratory
Oak Ridge National Laboratory, 2022
@inproceedings{jin2022performance,
title={Performance portability study of epistasis detection using SYCL on NVIDIA GPU},
author={Jin, Zheming and Vetter, Jeffrey S},
booktitle={Proceedings of the 13th ACM International Conference on Bioinformatics, Computational Biology and Health Informatics},
pages={1–8},
year={2022}
}
We describe the experience of converting a CUDA implementation of a high-order epistasis detection algorithm to SYCL. The goals are for our work to be useful to application and compiler developers with a detailed description of migration paths between CUDA and SYCL. Evaluating the CUDA and SYCL applications on an NVIDIA V100 GPU, we find that the optimization of loop unrolling needs to be applied manually to the SYCL kernel for obtaining comparable performance. The performance of the SYCL group reduce function, an alternative to the CUDA warp-based reduction, depends on the problem and work group sizes. The 64-bit popcount operation implemented with tree of adders is slightly faster than the built-in popcount operation. When the number of OpenMP threads is four, the highest performance of the SYCL and CUDA applications are comparable.
October 9, 2022 by hgpu