Commit 4decb3cc authored by Tim Dettmers's avatar Tim Dettmers
Browse files

Removed uncessary sync.

parent 394749db
...@@ -3145,7 +3145,6 @@ template <typename T, int BITS, int THREADS> __global__ void gemm_device(int M, ...@@ -3145,7 +3145,6 @@ template <typename T, int BITS, int THREADS> __global__ void gemm_device(int M,
} }
ticktock = ticktock == 0 ? 1 : 0; ticktock = ticktock == 0 ? 1 : 0;
__syncthreads();
if(warp_id == (WARPS-1)) if(warp_id == (WARPS-1))
for(int k = 0; k < batch_size_warps; k++) for(int k = 0; k < batch_size_warps; k++)
{ {
......
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