On Mon, 20 Jun 2011 14:13:21 -0700, Scott Biersdorff <sco...@cs.uoregon.edu> 
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

Attachment: pgpV2MI2LUXFb.pgp
Description: PGP signature

_______________________________________________
PyCUDA mailing list
PyCUDA@tiker.net
http://lists.tiker.net/listinfo/pycuda

Reply via email to