forked from JuliaGPU/OpenCL.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
36 lines (34 loc) · 1.29 KB
/
.travis.yml
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
language: cpp
compiler:
- clang
notifications:
email: false
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/julianightlies -y
- sudo apt-get update -qq -y
- sudo apt-get install -qq fglrx opencl-headers
- sudo apt-get install libpcre3-dev julia -y
script:
- julia -e 'Pkg.add("FactCheck");'
- julia -e 'Pkg.init(); run(`ln -s $(pwd()) $(Pkg.dir())/OpenCL`); Pkg.resolve()'
- julia -e 'using OpenCL; @assert isdefined(:OpenCL); @assert typeof(OpenCL) === Module'
- julia test/test_platform.jl
- julia test/test_context.jl
- julia test/test_device.jl
- julia test/test_buffer.jl
- julia test/test_cmdqueue.jl
- julia test/test_event.jl
- julia test/test_program.jl
- julia test/test_kernel.jl
- julia examples/demo.jl
- julia examples/performance.jl
- julia examples/hands_on_opencl/ex04/vadd_chain.jl
- julia examples/hands_on_opencl/ex05/vadd_abc.jl
- julia examples/hands_on_opencl/ex06/matmul.jl
- julia examples/hands_on_opencl/ex07/matmul.jl
- julia examples/hands_on_opencl/ex08/matmul.jl
- julia examples/hands_on_opencl/ex09/pi_ocl.jl
- julia examples/hands_on_opencl/exA/pi_vocl.jl 1
- julia examples/hands_on_opencl/exA/pi_vocl.jl 4
- julia examples/hands_on_opencl/exA/pi_vocl.jl 8