Fix improper seed re-storage

This commit is contained in:
Steven Robertson 2012-02-16 23:38:35 -05:00
parent 66e02db155
commit 92b1a27e8f

View File

@ -29,6 +29,6 @@ __global__ void f32_to_u8(
int idst = dstride * y + x; int idst = dstride * y + x;
dst[idst] = out; dst[idst] = out;
rctxs[rb_incr(rb->head, tid)] = rctx; rctxs[rb_incr(rb->tail, tid)] = rctx;
} }
''') ''')