File tree Expand file tree Collapse file tree 3 files changed +3
-81
lines changed
Closeables/src/main/scala/com/thoughtworks/compute
OpenCL/src/main/scala/com/thoughtworks/compute Expand file tree Collapse file tree 3 files changed +3
-81
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -590,7 +590,7 @@ object OpenCL {
590
590
}
591
591
}
592
592
593
- private [compute] final case class Kernel [Owner <: OpenCL with Singleton ](handle : Long )
593
+ final case class Kernel [Owner <: OpenCL with Singleton ](handle : Long )
594
594
extends AnyVal
595
595
with MonadicCloseable [UnitContinuation ] {
596
596
@@ -781,6 +781,7 @@ object OpenCL {
781
781
trait OpenCL extends MonadicCloseable [UnitContinuation ] with ImplicitsSingleton {
782
782
type Program = OpenCL .Program [this .type ]
783
783
type Event = OpenCL .Event [this .type ]
784
+ type Kernel = OpenCL .Kernel [this .type ]
784
785
protected def createProgramWithSource (sourceCode : TraversableOnce [CharSequence ]): Program = {
785
786
val stack = stackPush()
786
787
try {
Original file line number Diff line number Diff line change @@ -4,9 +4,7 @@ organization in ThisBuild := "com.thoughtworks.compute"
4
4
5
5
lazy val Memory = project
6
6
7
- lazy val Closeables = project
8
-
9
- lazy val OpenCL = project.dependsOn(Closeables , Memory )
7
+ lazy val OpenCL = project.dependsOn(Memory )
10
8
11
9
lazy val OpenCLCodeGenerator = project.dependsOn(Memory )
12
10
You can’t perform that action at this time.
0 commit comments