File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
JavaCL/src/main/java/com/nativelibs4java/opencl/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ public CLQueue getQueue() {
199199 }
200200
201201 /**
202- * Number of random numbers generated at each call of {@link ParallelRandom#next() } or {@link ParallelRandom#next(IntBuffer ) }<br>
202+ * Number of random numbers generated at each call of {@link ParallelRandom#next() } or {@link ParallelRandom#next(Pointer ) }<br>
203203 * The numbers might not all be generated exactly in parallel, the level of parallelism is implementation-dependent.
204204 * @return size of each buffer returned by {@link ParallelRandom#next() }
205205 */
@@ -234,7 +234,7 @@ public synchronized void next(Pointer<Integer> output) {
234234 /**
235235 * Returns a direct NIO buffer containing the next {@link ParallelRandom#getParallelSize() } random integers.<br>
236236 * This buffer is read only and will only be valid until any of the "next" method is called again.
237- * @param output buffer of capacity ; see {@link ParallelRandom#getParallelSize() }
237+ * @return output buffer of capacity ; see {@link ParallelRandom#getParallelSize() }
238238 */
239239 public synchronized Pointer <Integer > next () {
240240 CLEvent evt = doNext ();
You can’t perform that action at this time.
0 commit comments