forked from scottgs/cvtile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
39 lines (27 loc) · 1.01 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
: BUILD PREREQUISITES:
Update create symbolic links for the correct python version
and CUDA hardware SM compute level.
:: Python version dependent cudalt.py script
Link, or write and link, example:
ln -s cudalt-2.7.py cudalt.py
or
ln -s cudalt-3.2.py cudalt.py
:: CUDA Makefile include:
Various Nvidia cards have differing SM compute levels. For this
reason, a cuda.<sm>.mk file is provided for each relevant SM.
You must create a symlink to the proper Make include file or you
will get the error:
----------------------------------------------------------------------
automake-1.13: error: cannot open < cuda.mk: No such file or directory
autoreconf-2.68: automake failed with exit status: 1
----------------------------------------------------------------------
For example, on a Kepler
ln -s cuda.20.mk cuda.mk
For Fermi, use
ln -s cuda.30.mk cuda.mk
: AUTOTOOLS BUILD & INSTALL
autoreconf -ivf && ./configure && make
sudo make install
THANKS:
Autotools + CUDA derived from ClusterChimps
www.clusterchimps.org