Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

3 changes: 2 additions & 1 deletion OpenCL/src/main/scala/com/thoughtworks/compute/OpenCL.scala
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ object OpenCL {
}
}

private[compute] final case class Kernel[Owner <: OpenCL with Singleton](handle: Long)
final case class Kernel[Owner <: OpenCL with Singleton](handle: Long)
extends AnyVal
with MonadicCloseable[UnitContinuation] {

Expand Down Expand Up @@ -781,6 +781,7 @@ object OpenCL {
trait OpenCL extends MonadicCloseable[UnitContinuation] with ImplicitsSingleton {
type Program = OpenCL.Program[this.type]
type Event = OpenCL.Event[this.type]
type Kernel = OpenCL.Kernel[this.type]
protected def createProgramWithSource(sourceCode: TraversableOnce[CharSequence]): Program = {
val stack = stackPush()
try {
Expand Down
4 changes: 1 addition & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ organization in ThisBuild := "com.thoughtworks.compute"

lazy val Memory = project

lazy val Closeables = project

lazy val OpenCL = project.dependsOn(Closeables, Memory)
lazy val OpenCL = project.dependsOn(Memory)

lazy val OpenCLCodeGenerator = project.dependsOn(Memory)

Expand Down