-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
111 lines (89 loc) · 3.57 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
************************************************
**** ViennaCL Readme ****
************************************************
Table of Contents
------------------
1. Requirements
2. Installation
3. Project Layout
4. Authors and Contact
A. License
1. Requirements
-----------------
ViennaCL requires the following:
* A recent C++ compiler (e.g. gcc 4.x.x)
* For accessing GPUs and multi-core CPUs: OpenCL (shared library and include files)
* For building some of the tutorials: uBLAS (shipped with the Boost libraries)
2. Installation
-----------------
The first step is to extract the file:
Unix-based OS:
$> gunzip ViennaCL-1.4.0.tar.gz
$> tar -xf ViennaCL-1.4.0.tar
$> cd ViennaCL-1.4.0
Windows:
Extract the file using your favorite compressor/decompressor, e.g. 7-zip.
ViennaCL is a header-only library, therefore it is sufficient to copy the subfolder viennacl/ (holding the header files) into you project directory or your system include directory. For instructions on how to set the include paths correctly, please refer to the documentation of your compiler.
For building the examples, proceed as follows:
Unix-based clients:
* change to the build directory:
$> cd build
* call cmake
$> cmake ..
* If CMake cannot find the OpenCL files, e.g. 'Could NOT find OPENCL (missing: OPENCL_INCLUDE_DIR)', please set the paths manually, e.g.
$> cmake -DOPENCL_INCLUDE_DIR=../CL ..
or use the CMake GUI.
* Use 'make' to build all examples:
$> make
(alternatively, you can build them individually via 'make blas1', 'make viennacl-info', etc.
* Start the tutorials (optional)
$> examples/blas1
$> examples/custom-kernels
$> examples/viennacl-info
(...)
Windows:
* Open the CMake GUI
* Set the source code location ('Where is the source code:') to the extracted ViennaCL-1.x.x folder
* Set the build folder ('Where to build the binaries:') to the subfolder build/ in the ViennaCL-1.x.x folder.
* Click on 'Configure' and select your Compiler
* Click on 'Configure' again
* Click on 'Generate'
* Navigate to the build/ folder, open the generated project files with your favorite IDE, and build them.
3. Project Layout
-----------------
---- ViennaCL-1.X.X
|
|-- auxiliary/ - (only in src-Edition) Auxiliary files (i.e. the OpenCL source code tree and the converter for the header files)
|
|-- build/ - Build directory for building the examples
|
|-- CL/ - The OpenCL headers
|
|-- cmake/ - Additional CMake configuration files
|
|-- doc/ - Documentation (LaTeX and doxygen)
|
|-- examples/ - Tutorial and benchmarking applications
|
|-- testdata/ - Test data for the tutorials and benchmarks
|
|-- benchmarks/ - A small benchmarking suite
|
|-- tutorial/ - Some tutorials explaining the usage of ViennaCL
|
|-- parameters/ - Parameter optimization environment
|
|-- external/ - External libraries
|
|-- tests/ - Automated test suite using CTest
|
|-- viennacl/ - The library source code
4. Contact
------------------------
For any technical questions related to ViennaCL, please use our mailing list: [email protected]
You may also use the forum provided by sourceforge.net: http://sourceforge.net/projects/viennacl/
For any other issues, please contact the project head Karl Rupp at [email protected].
ViennaCL was developed under the aegis of the 'Institute for Microelectronics' at the 'Vienna University of Technology'.
A. License
------------
ViennaCL is distributed under the MIT (X11) License. See file LICENSE.