Changes between Version 14 and Version 15 of GPUApp
- Timestamp:
- Jul 15, 2010, 11:51:32 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GPUApp
v14 v15 10 10 == Windows == #windows 11 11 12 The Windows versions compile under Visual Studio (TUAN: which versions?)12 The 32-bit Windows compile under Visual Studio 13 13 14 14 === NVIDIA Cuda === … … 69 69 and replace this path with an appropriate path on your machine. 70 70 71 You will also need to build the necessary Cuda SDK libraries by running makefile in 72 "~/NVIDIA_GPU_Computing_SDK/C/". The resulting libraries such as "libcutil_i386" are 73 created in "~/NVIDIA_GPU_Computing_SDK/C/lib/". Notice that if these libraries are not built, 74 running nvcuda-sample-app makefile could result in the following error: 75 {{{ 76 /usr/bin/ld: cannot find -lcutil_i386 77 }}} 78 71 79 If your machine doesn't have an NVIDIA Cuda-enabled GPU, 72 80 you can compile and run your app in emulation mode. … … 79 87 export PATH=/usr/local/cuda/bin:$PATH 80 88 export LD_LIBRARY_PATH=/usr/local/cuda/lib:$LD_LIBRARY_PATH 89 }}} 90 This will resolve the following error: 91 {{{ 92 ./example_app_nvcuda: error while loading shared libraries: libcudart.so.3: cannot open shared object file: No such file or directory 81 93 }}} 82 94