Closed GoogleCodeExporter closed 8 years ago
Here is a minimal reproducer:
#include <assert.h>
__global__ void segfault(int *dst, int *src)
{
*dst = *src;
}
int main(void)
{
segfault<<<1,1>>>((int*)0, (int*)0);
cudaError_t error = cudaThreadSynchronize();
assert(error != cudaSuccess);
return 0;
}
Original comment by jaredhoberock
on 27 Sep 2010 at 6:13
Submitted as nvbug 738997
Original comment by jaredhoberock
on 27 Sep 2010 at 6:26
Original issue reported on code.google.com by
jaredhoberock
on 27 Sep 2010 at 5:09