Christoph Gohlke <cgohlke@...> writes: > Try open pycuda\_driver.pyd with Dependency Walker > <http://www.dependencywalker.com/>. It might be able to detect which > procedures can not be found. > > Consider upgrading to Python 2.6.6 and nvidia 266.58 drivers, which > contain many bug fixes.
Thank you. Dependency Walker found many unresolved functions in NVCUDA.DLL. Upgrading nvidia drivers solved the problem. One additional problem: compiler.py could not find PyCUDA's C header files. They were installed in C:\Python26\include\pycuda\, so I added join(pathname, "..", "..", "..", "include", "pycuda"), in _find_pycuda_include_path() in compiler.py. Everything works now. _______________________________________________ PyCUDA mailing list [email protected] http://lists.tiker.net/listinfo/pycuda
