Unix and Linux Discussions Tagged with work |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
9 |
3,292 |
Shell Programming and Scripting |
|
|
|
2 |
1,521 |
UNIX for Beginners Questions & Answers |
|
|
|
13 |
2,074 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,887 |
Programming |
|
|
|
0 |
8,321 |
What is on Your Mind? |
|
|
|
0 |
8,410 |
What is on Your Mind? |
|
|
|
12 |
3,491 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
1,095 |
What is on Your Mind? |
|
|
|
2 |
2,554 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,356 |
Programming |
|
|
|
107 |
34,735 |
What is on Your Mind? |
|
|
|
0 |
4,216 |
Ubuntu |
|
|
|
1 |
3,947 |
Forum Support Area for Unregistered Users & Account Problems |
|
|
|
4 |
13,216 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,394 |
UNIX and Linux RSS News |
|
|
|
10 |
19,188 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,680 |
UNIX and Linux RSS News |
|
|
|
0 |
2,897 |
Virtualization and Cloud Computing |
|
|
|
0 |
2,775 |
IP Networking |
|
|
|
2 |
5,223 |
Ubuntu |
|
|
|
8 |
4,854 |
Solaris |
|
|
|
1 |
6,310 |
IP Networking |
|
|
|
0 |
2,519 |
UNIX and Linux RSS News |
|
|
|
0 |
1,489 |
UNIX and Linux RSS News |
|
|
|
0 |
1,117 |
UNIX and Linux RSS News |
|
|
|
6 |
1,817 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,334 |
UNIX for Dummies Questions & Answers |
|
|
|
15 |
32,852 |
IP Networking |
|
|
|
0 |
1,544 |
Complex Event Processing RSS News |
|
|
|
0 |
1,989 |
Cartoons for Geeks |
|
|
|
0 |
1,151 |
UNIX and Linux RSS News |
|
|
|
2 |
9,755 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,982 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
1,925 |
Shell Programming and Scripting |
|
|
|
0 |
2,793 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,000 |
Shell Programming and Scripting |
|
|
|
1 |
1,207 |
Shell Programming and Scripting |
|
|
|
3 |
2,351 |
Filesystems, Disks and Memory |
|
|
|
2 |
16,746 |
AIX |
|
|
|
0 |
1,251 |
Software Releases - RSS News |
GLDISPATCHCOMPUTE(3G) OpenGL Manual GLDISPATCHCOMPUTE(3G)
NAME
glDispatchCompute - launch one or more compute work groups
C SPECIFICATION
void glDispatchCompute(GLuint num_groups_x, GLuint num_groups_y, GLuint num_groups_z);
PARAMETERS
num_groups_x
The number of work groups to be launched in the X dimension.
num_groups_y
The number of work groups to be launched in the Y dimension.
num_groups_z
The number of work groups to be launched in the Z dimension.
DESCRIPTION
glDispatchCompute launches one or more compute work groups. Each work group is processed by the active program object for the compute
shader stage. While the individual shader invocations within a work group are executed as a unit, work groups are executed completely
independently and in unspecified order. num_groups_x, num_groups_y and num_groups_z specify the number of local work groups that will be
dispatched in the X, Y and Z dimensions, respectively.
ERRORS
GL_INVALID_OPERATION is generated if there is no active program for the compute shader stage.
GL_INVALID_VALUE is generated if any of num_groups_x, num_groups_y, or num_groups_z is greater than or equal to the maximum work-group
count for the corresponding dimension.
ASSOCIATED GETS
glGet() with argument GL_MAX_COMPUTE_WORK_GROUP_COUNT
SEE ALSO
glDispatchComputeIndirect().
COPYRIGHT
Copyright (C) 2012 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication
License, v 1.0, 8 June 1999. http://opencontent.org/openpub/.
AUTHORS
opengl.org
opengl.org 06/10/2014 GLDISPATCHCOMPUTE(3G)