fix racecheck warning in scanRows kernel

(cherry picked from commit fb15bdfb21)
This commit is contained in:
Vladislav Vinogradov 2015-04-23 12:43:17 +03:00 committed by Alexander Smorkalov
parent a752f25944
commit fe1bd0cc2f

View File

@ -280,6 +280,7 @@ __global__ void scanRows(T_in *d_src, Ncv32u texOffs, Ncv32u srcWidth, Ncv32u sr
__shared__ T_out shmem[NUM_SCAN_THREADS * 2];
__shared__ T_out carryElem;
if (threadIdx.x == 0)
carryElem = 0;
__syncthreads();