File: README

package info (click to toggle)
pocl 6.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,320 kB
  • sloc: lisp: 149,513; ansic: 103,778; cpp: 54,947; python: 1,513; sh: 949; ruby: 255; pascal: 226; tcl: 180; makefile: 175; java: 72; xml: 49
file content (24 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
To enable the OpenCV tests:

1) run 
   'wget https://github.com/Itseez/opencv/archive/3.0.0-beta.zip -O opencv-3.0.0-beta.zip' 
   to download OpenCV

2) configure pocl, it should now detect the OpenCV benchmark and
   enable it. You need cmake to get it built.

   Also you might need to install the following libraries:
   VTK (libvtk6-dev)

3) call 'make prepare-examples' once to get the examples built

4) call 'make check TESTSUITEFLAGS="-k opencv"', it should build 
   the OpenCV cases and run the pocl test suite for the OpenCV.

Known issues:

The CMake of OpenCV doesn't like ccache, so if you have CXX='ccache g++-4.7'
you might need to prepare the example without the ccache in front. E.g.:

  make prepare-examples CXX=g++-4.7 CC=g++-4.7