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
Copy file name to clipboardExpand all lines: samples/10_queueexperiments/README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ Some devices that do not support out-of-order command-queues can still execute c
21
21
5. The fifth pattern executes independent ND-range kernels using multiple in-order command-queues, except in this scenario the command-queues are created using different command-queue indices.
22
22
This pattern requires support for the [cl_intel_command_queue_families](https://www.khronos.org/registry/OpenCL/extensions/intel/cl_intel_command_queue_families.html) extension.
23
23
Command-queues with different command-queue indices may execute differently than ordinary command-queues.
24
+
5. The sixth pattern is similar, except in this scenario the command-queues are explicitly created using the same command-queue indices.
25
+
This pattern also requires support for the [cl_intel_command_queue_families](https://www.khronos.org/registry/OpenCL/extensions/intel/cl_intel_command_queue_families.html) extension.
26
+
Command-queues with different command-queue indices may execute differently than ordinary command-queues.
24
27
6. The sixth pattern executes independent ND-range kernels using in-order command-queues created different OpenCL contexts.
25
28
This pattern simulates the behavior of multiple applications running in parallel, or multiple isolated threads running in parallel.
26
29
@@ -52,6 +55,6 @@ For GPU OpenCL devices this may require running the application in a console or
52
55
|:--|:-:|:--|
53
56
| `-d <index>` | 0 | Specify the index of the OpenCL device in the platform to execute on the sample on.
54
57
| `-p <index>` | 0 | Specify the index of the OpenCL platform to execute the sample on.
55
-
| `-k <number>` | 8 | Specify the number of kernels to execute for the variable execution.
58
+
| `-k <number>` | 0 | Specify the number of kernels to execute for the variable execution. Must be less than or equal to 64. Specifying zero runs a sweep over different values.
56
59
| `-i <number>` | 1 | Specify the number of kernel iterations to execute.
57
60
| `-e <number>` | 1 | Specify the number of ND-range elements to execute (the global work size).
0 commit comments