8a2d6bace13724e5a5b1bec77fd110e87b1d4449
[alexxy/gromacs.git] / src / gromacs / gpu_utils / sycl_kernel_utils.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2021, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35
36 #ifndef GMX_GPU_UTILS_SYCL_KERNEL_UTILS_H
37 #define GMX_GPU_UTILS_SYCL_KERNEL_UTILS_H
38
39 #include "gmxsycl.h"
40
41 /*! \file
42  *  \brief SYCL kernel helper functions.
43  *
44  *  \author Andrey Alekseenko <al42and@gmail.com>
45  */
46
47 /*! \brief Access mode to use for atomic accessors.
48  *
49  * Intel DPCPP compiler has \c sycl::atomic_ref, but has no \c sycl::atomic_fetch_add for floats.
50  * However, \c atomic_ref can not be constructed from \c sycl::atomic, so we can not use
51  * atomic accessors. Thus, we use \c mode::read_write accessors and \c atomic_ref.
52  *
53  * hipSYCL does not have \c sycl::atomic_ref, but has \c sycl::atomic_fetch_add for floats, which
54  * requires using atomic accessors. Thus, we use \c mode::atomic accessors.
55  *
56  * The \ref atomicFetchAdd function could be used for doing operations on such accessors.
57  */
58 static constexpr auto mode_atomic = GMX_SYCL_DPCPP ? cl::sycl::access::mode::read_write :
59                                                    /* GMX_SYCL_HIPSYCL */ cl::sycl::access::mode::atomic;
60
61 //! \brief Full warp active thread mask used in CUDA warp-level primitives.
62 static constexpr unsigned int c_cudaFullWarpMask = 0xffffffff;
63
64 /*! \brief Convenience wrapper to do atomic addition to a global buffer.
65  *
66  * The implementation differences between DPCPP and hipSYCL are explained in \ref mode_atomic.
67  */
68 template<class IndexType>
69 static inline void atomicFetchAdd(DeviceAccessor<float, mode_atomic> acc, const IndexType idx, const float val)
70 {
71 #if GMX_SYCL_DPCPP
72     sycl_2020::atomic_ref<float, sycl_2020::memory_order::relaxed, sycl_2020::memory_scope::device, cl::sycl::access::address_space::global_space>
73             fout_atomic(acc[idx]);
74     fout_atomic.fetch_add(val);
75 #elif GMX_SYCL_HIPSYCL
76 #    ifdef SYCL_DEVICE_ONLY
77     /* While there is support for float atomics on device, the host implementation uses
78      * Clang's __atomic_fetch_add intrinsic, that, at least in Clang 11, does not support
79      * floats. Luckily, we don't want to run on host. */
80     // The pragmas below can be removed once we switch to sycl::atomic
81 #        pragma clang diagnostic push
82 #        pragma clang diagnostic ignored "-Wdeprecated-declarations"
83     acc[idx].fetch_add(val);
84 #        pragma clang diagnostic push
85 #    else
86     GMX_ASSERT(false, "hipSYCL host codepath not supported");
87     GMX_UNUSED_VALUE(val);
88     GMX_UNUSED_VALUE(acc);
89     GMX_UNUSED_VALUE(idx);
90 #    endif
91 #endif
92 }
93
94 /*! \brief Issue an intra sub-group barrier.
95  *
96  * Equivalent with CUDA's \c syncwarp(c_cudaFullWarpMask).
97  *
98  */
99 static inline void subGroupBarrier(const cl::sycl::nd_item<1> itemIdx)
100 {
101 #if GMX_SYCL_HIPSYCL
102     cl::sycl::group_barrier(itemIdx.get_sub_group(), cl::sycl::memory_scope::sub_group);
103 #else
104     itemIdx.get_sub_group().barrier();
105 #endif
106 }
107
108 namespace sycl_2020
109 {
110 #if GMX_SYCL_HIPSYCL
111 __device__ __host__ static inline float shift_left(sycl_2020::sub_group,
112                                                    float                                var,
113                                                    sycl_2020::sub_group::linear_id_type delta)
114 {
115     // No sycl::sub_group::shift_left / shuffle_down in hipSYCL yet
116 #    ifdef SYCL_DEVICE_ONLY
117 #        if defined(HIPSYCL_PLATFORM_CUDA) && defined(__HIPSYCL_ENABLE_CUDA_TARGET__)
118     return __shfl_down_sync(c_cudaFullWarpMask, var, delta);
119 #        elif defined(HIPSYCL_PLATFORM_ROCM) && defined(__HIPSYCL_ENABLE_HIP_TARGET__)
120     // Do we need more ifdefs? https://github.com/ROCm-Developer-Tools/HIP/issues/1491
121     return __shfl_down(var, delta);
122 #        else
123 #            error "Unsupported hipSYCL target"
124 #        endif
125 #    else
126     // Should never be called
127     GMX_UNUSED_VALUE(var);
128     GMX_UNUSED_VALUE(delta);
129     assert(false);
130     return NAN;
131 #    endif
132 }
133 #elif GMX_SYCL_DPCPP
134 static inline float shift_left(sycl_2020::sub_group sg, float var, sycl_2020::sub_group::linear_id_type delta)
135 {
136     return sg.shuffle_down(var, delta);
137 }
138 #endif
139
140 #if GMX_SYCL_HIPSYCL
141 __device__ __host__ static inline float shift_right(sycl_2020::sub_group,
142                                                     float                                var,
143                                                     sycl_2020::sub_group::linear_id_type delta)
144 {
145     // No sycl::sub_group::shift_right / shuffle_up in hipSYCL yet
146 #    ifdef SYCL_DEVICE_ONLY
147 #        if defined(HIPSYCL_PLATFORM_CUDA) && defined(__HIPSYCL_ENABLE_CUDA_TARGET__)
148     return __shfl_up_sync(c_cudaFullWarpMask, var, delta);
149 #        elif defined(HIPSYCL_PLATFORM_ROCM) && defined(__HIPSYCL_ENABLE_HIP_TARGET__)
150     // Do we need more ifdefs? https://github.com/ROCm-Developer-Tools/HIP/issues/1491
151     return __shfl_up(var, delta);
152 #        else
153 #            error "Unsupported hipSYCL target"
154 #        endif
155 #    else
156     // Should never be called
157     assert(false);
158     GMX_UNUSED_VALUE(var);
159     GMX_UNUSED_VALUE(delta);
160     return NAN;
161 #    endif
162 }
163 #elif GMX_SYCL_DPCPP
164 static inline float shift_right(sycl_2020::sub_group sg, float var, sycl_2020::sub_group::linear_id_type delta)
165 {
166     return sg.shuffle_up(var, delta);
167 }
168 #endif
169 } // namespace sycl_2020
170
171 #endif /* GMX_GPU_UTILS_SYCL_KERNEL_UTILS_H */