fix racecheck warning in scanRows kernel

(cherry picked from commit fb15bdfb21da2c38beea6e87c7b08a19610821d6)
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,7 +280,8 @@ __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;
carryElem = 0;
if (threadIdx.x == 0)
carryElem = 0;
__syncthreads();
while (numBuckets--)