You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Execute the code using the provided arguments (may be CLArray instances, CLGuardedBuffer instances, CLBuffer instances or primitive values), using the provided global sizes (and optional local group sizes) and respecting the execution order of arguments declared as "read from" and "written to".<br>
72
+
* Example :
73
+
* <code>
74
+
import scalacl._
75
+
implicit val context = Context.best(CPU)
76
+
val n = 100
77
+
val f = 0.5f
78
+
val sinCosOutputs: CLArray[Float] = new CLArray[Float](2 * n)
0 commit comments