提交 da4ce232 编写于 作者: H hedaoyuan 提交者: GitHub

Merge pull request #3044 from hedaoyuan/fix_675

Fix hl_sequence_avg_forward.
...@@ -330,7 +330,7 @@ __global__ void KeSequenceAvgForward(real* dst, ...@@ -330,7 +330,7 @@ __global__ void KeSequenceAvgForward(real* dst,
} }
sum = mode == 1 ? sum : sum = mode == 1 ? sum :
(mode == 0 ? sum / seqLength : sum * my_rsqrt((real)seqLength)); (mode == 0 ? sum / seqLength : sum * my_rsqrt((real)seqLength));
dst[gid] = sum; dst[gid] += sum;
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册