Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions paddle/fluid/platform/cuda_device_function.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,23 @@ HOSTDEVICE T Infinity() {
return INFINITY;
}

#ifdef PADDLE_WITH_HIP
template <typename T>
__device__ T reduceSum(T val, int tid, int len) {
const int warpSize = 32;
__shared__ T shm[warpSize*warpSize];
shm[tid] = val;

__syncthreads();

if (tid == 0 ) {
for (int i = 1 ; i < len ; i++)
val += shm[i];
}

return val;
}
#else
template <typename T>
__device__ T reduceSum(T val, int tid, int len) {
// NOTE(zcd): The warp size should be taken from the
Expand Down Expand Up @@ -134,6 +151,7 @@ __device__ T reduceSum(T val, int tid, int len) {
}
return val;
}
#endif

} // namespace platform
} // namespace paddle