All of the examples run to completion giving back what seems to be 
normal results (they don't have the error message above).  
Before some of them were returning error messages

*.so files are fine with macs.  

Also, it seems that

    if 'darwin' in sys.platform:  
        # prevent from building ppc since cuda on OS X is not compiled for ppc
        if "-arch" not in conf["CXXFLAGS"]:
            conf["CXXFLAGS"].extend(['-arch', 'i386', '-m32'])
        if "-arch" not in conf["LDFLAGS"]:
            conf["LDFLAGS"].extend(['-arch', 'i386', '-m32'])
 
takes care of the architecture problems.  I was having that message 
before and this was the only thing that I found that fixed it.  




_______________________________________________
PyCUDA mailing list
[email protected]
http://tiker.net/mailman/listinfo/pycuda_tiker.net

Reply via email to