[PyCUDA] 32-bit PyCUDA on Snow Leopard

2010-04-20 Thread Cyrus Omar
So I've been spending the last several hours trying to install PyCUDA on Snow Leopard. Initially, seeing that CUDA 3.0 was 64-bit on OSX, I attempted to install everything 64-bit (boost, python, pycuda, etc.). I got as far as running test_driver.py which froze my machine completely, needing a hard

Re: [PyCUDA] question from a lazy person : *** CUDA_ROOT not set, and nvcc not in path. Giving up.

2010-06-04 Thread Cyrus Omar
Not sure if thats a distutils error or one you wrote Andreas, but it might be helpful to make it more clear that CUDA_ROOT is not an environmental variable but rather a config option. Maybe something like "(did you run configure.py?)" at the end? On Fri, Jun 4, 2010 at 11:55, Michael Rule wrote:

Re: [PyCUDA] mac64 PyCUDA

2010-09-22 Thread Cyrus Omar
Using the latest git pycuda (and included boost) and CUDA 3.2 driver and toolkit, it seems that installation works with 64-bit Python on Snow Leopard. Both test_driver and test_cumath work. However, not all of the tests in test_gpuarray pass. Here is the output I get from that. I am using the versi

Re: [PyCUDA] Dealing with driver timeouts in long running kernels

2010-11-16 Thread Cyrus Omar
On Tue, Nov 16, 2010 at 20:25, Dan Goodman wrote: > A final option that I thought of would be to check for a launch timeout > failure after each kernel launch, and if it happens, divide my problem size > by two and try again, repeating until I don't get any launch failures. The > trouble with thi