Skip to content
This repository was archived by the owner on Sep 27, 2021. It is now read-only.

Commit c1497a8

Browse files
committed
rely on tagged packages
1 parent a9153a9 commit c1497a8

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

REQUIRE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ julia 0.6
55
StaticArrays
66
ColorTypes
77

8-
#Transpiler 0.3
9-
#Sugar 0.3
8+
Transpiler 0.4
9+
Sugar 0.4
1010
Matcha 0.0.2
1111

1212
OpenCL 0.6.1 #proper packed pointer free

src/compilation.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ function CLFunction(f::F, args::T, ctx = global_context()) where {T, F}
249249
get!(compiled_functions, (ctx.id, f, cltypes)) do # TODO make this faster
250250
method = CLMethod((f, cltypes))
251251
source, fname, ptr_extract = assemble_kernel(method)
252+
println(source)
252253
options = "-cl-denorms-are-zero -cl-mad-enable -cl-unsafe-math-optimizations"
253254
if version > v"1.2"
254255
options *= " -cl-std=CL1.2"

test/runtests.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,8 @@ if (
33
get(ENV, "APPVEYOR", "") == "true" ||
44
get(ENV, "CI", "") == "true"
55
)
6-
Pkg.clone("Sugar")
7-
Pkg.clone("Transpiler")
86
Pkg.clone("GPUArrays")
9-
10-
Pkg.checkout("OpenCL", "sd/pointerfree")
11-
Pkg.checkout("Sugar", "sd/struct_buffer")
12-
Pkg.checkout("Transpiler", "sd/struct_buffer")
137
Pkg.checkout("GPUArrays", "sd/abstractgpu")
14-
158
end
169

1710
using CLArrays

0 commit comments

Comments
 (0)