On Mon, 20 Jun 2011 14:13:21 -0700, Scott Biersdorff <[email protected]> wrote: > Hi, > > I would like to report a possible bug with pycuda. To show the issue > I've modified demo.py adding by passing a option to the nvcc compiler: > > mod = SourceModule(""" > __global__ void doublify(float *a) > { > int idx = threadIdx.x + threadIdx.y*4; > a[idx] *= 2; > } > """, options=['-ccbin /usr/bin'])
Pass this as options=['-ccbin', '/usr/bin']. Andreas
pgpV2MI2LUXFb.pgp
Description: PGP signature
_______________________________________________ PyCUDA mailing list [email protected] http://lists.tiker.net/listinfo/pycuda
