diff options
author | Christoph Bumiller <[email protected]> | 2012-05-12 19:32:46 +0200 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2012-05-12 19:33:48 +0200 |
commit | 5c9bccc97e9fb0776f2ca5bb57e55116a7efb43b (patch) | |
tree | beebec9babc18885745c14aa8886e48f2c0a0a04 /src/gallium/docs | |
parent | ec848d2730afcc8a0c81bf74b7bb27936407c305 (diff) |
clover, gallium: add PIPE_COMPUTE_CAP_MAX_THREADS_PER_BLOCK
This is not necessarily the product of MAX_BLOCK_SIZE[i].
Reviewed-by: Tom Stellard <[email protected]>
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/gallium/docs')
-rw-r--r-- | src/gallium/docs/source/screen.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index ff63ce83bea..2bddf1bbb3b 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -212,6 +212,11 @@ pipe_screen::get_compute_param. units. Value type: ``uint64_t []``. * ``PIPE_COMPUTE_CAP_MAX_BLOCK_SIZE``: Maximum block size in thread units. Value type: ``uint64_t []``. +* ``PIPE_COMPUTE_CAP_MAX_THREADS_PER_BLOCK``: Maximum number of threads that + a single block can contain. Value type: ``uint64_t``. + This may be less than the product of the components of MAX_BLOCK_SIZE and is + usually limited by the number of threads that can be resident simultaneously + on a compute unit. * ``PIPE_COMPUTE_CAP_MAX_GLOBAL_SIZE``: Maximum size of the GLOBAL resource. Value type: ``uint64_t``. * ``PIPE_COMPUTE_CAP_MAX_LOCAL_SIZE``: Maximum size of the LOCAL |