"vscode:/vscode.git/clone" did not exist on "ae26b88d6ef51702ae5fc3eec947de2b752db775"
Commit 970109b4 authored by zhuwenwen's avatar zhuwenwen
Browse files

fix error

parent c40bf687
......@@ -32,7 +32,7 @@
__inline__ __device__ float WarpAllReduceMax(float val) {
for (int mask = 1; mask < 32; mask *= 2) {
val = max(val, __shfl_xorc(val, mask));
val = max(val, __shfl_xor(val, mask));
}
return val;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment