Merge pull request #1925 from arghdos/patch-3

Fix incorrect shfl_xor for Windows
Dieser Commit ist enthalten in:
Evgeny Mankov
2020-03-11 00:58:11 +03:00
committet von GitHub
Commit 925d76ddef
@@ -557,7 +557,7 @@ long __shfl_xor(long var, int lane_mask, int width = warpSize)
return tmp1;
#else
static_assert(sizeof(long) == sizeof(int), "");
return static_cast<long>(__shfl_down(static_cast<int>(var), lane_delta, width));
return static_cast<long>(__shfl_xor(static_cast<int>(var), lane_mask, width));
#endif
}
__device__