https://github.com/pathscale/pscnv
Raw File
Tip revision: 05fc1a32334e560fe52bfc2d73290952465f4b50 authored by cbergstrom on 03 August 2012, 03:46:02 UTC
Merge pull request #5 from polachok/new
Tip revision: 05fc1a3
README
#
# pscnv - PathScale NVIDIA graphics driver
#

pscnv is an open-source NVIDIA graphics driver developed by PathScale.
It is available either for graphics or compute (general-purpose computations
on GPUs, a.k.a., GPGPU) applications.
To build the driver, you will need envytools, a rich set of useful tools and
documentations for NVIDIA graphics cards - follow the instructions below. 

1. Make a working directory

mkdir $(YOUR_FAVORITE_PLACE)

2. Build envytools

cd $(YOUR_FAVORITE_PLACE)
git clone git://0x04.net/envytools.git
cd envytools
mkdir build
cd build
cmake .. # may require you to install some more packages
make
sudo make install # will install the tools to /usr/local/{bin,lib}

3. Build pscnv

cd $(YOUR_FAVORITE_PLACE)
git clone git://github.com/pathscale/pscnv.git
cd pscnv
mkdir build
cd build
cmake ..
make
cd pscnv
sudo insmod pscnv.ko # or modprobe

back to top