Changes between Version 14 and Version 15 of GPUApp


Ignore:
Timestamp:
Jul 15, 2010, 11:51:32 AM (14 years ago)
Author:
TuanLe
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GPUApp

    v14 v15  
    1010== Windows == #windows
    1111
    12 The Windows versions compile under Visual Studio (TUAN: which versions?)
     12The 32-bit Windows compile under Visual Studio
    1313
    1414=== NVIDIA Cuda ===
     
    6969and replace this path with an appropriate path on your machine.
    7070
     71You 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
     73created in "~/NVIDIA_GPU_Computing_SDK/C/lib/". Notice that if these libraries are not built,
     74running nvcuda-sample-app makefile could result in the following error:
     75{{{
     76/usr/bin/ld: cannot find -lcutil_i386
     77}}}
     78
    7179If your machine doesn't have an NVIDIA Cuda-enabled GPU,
    7280you can compile and run your app in emulation mode.
     
    7987export PATH=/usr/local/cuda/bin:$PATH
    8088export LD_LIBRARY_PATH=/usr/local/cuda/lib:$LD_LIBRARY_PATH
     89}}}
     90This 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
    8193}}}
    8294