diff options
author | Dave Airlie <[email protected]> | 2017-11-01 14:05:19 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-11-10 08:39:35 +1000 |
commit | 4b0b82770aad9581ee2df2dd01d63c51b28e7656 (patch) | |
tree | 53a93f30a7b119667ca4916acd1573a4ae8409bc /src/gallium/docs/source | |
parent | 2a06423c0094749126afced82c400380221fadac (diff) |
gallium/tgsi: start adding hw atomics (v3.2)
This adds support for a hw atomic counters to TGSI.
A new register file for storing atomic counters is added,
along with a new atomic counter semantic, along with docs
for both.
v2: drop semantic, move hw counter to backend,
Ilia pointed out SSO would have busted my plan, and he
was right.
v3: drop BUFFER decls. (Marek)
v3.1: minor fixups for whitespace, set ureg error
if we overflow the hw atomic limits. (nha)
v3.2: fix some docs inconsistencies (Ilia)
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Tested-By: Gert Wollny <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/docs/source')
-rw-r--r-- | src/gallium/docs/source/tgsi.rst | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/src/gallium/docs/source/tgsi.rst b/src/gallium/docs/source/tgsi.rst index 1a51fe987b8..9e956586c4c 100644 --- a/src/gallium/docs/source/tgsi.rst +++ b/src/gallium/docs/source/tgsi.rst @@ -2638,9 +2638,11 @@ logical operations. In this context atomicity means that another concurrent memory access operation that affects the same memory location is guaranteed to be performed strictly before or after the entire execution of the atomic operation. The resource may be a BUFFER, -IMAGE, or MEMORY. In the case of an image, the offset works the same as for -``LOAD`` and ``STORE``, specified above. These atomic operations may -only be used with 32-bit integer image formats. +IMAGE, HWATOMIC, or MEMORY. In the case of an image, the offset works +the same as for ``LOAD`` and ``STORE``, specified above. For atomic +counters, the offset is an immediate index to the base hw atomic +counter for this operation. +These atomic operations may only be used with 32-bit integer image formats. .. opcode:: ATOMUADD - Atomic integer addition @@ -3517,6 +3519,31 @@ accessing a misaligned address is undefined. Usage of the STORE opcode is only allowed if the WR (writable) flag is set. +Hardware Atomic Register File +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Hardware atomics are declared as a 2D array with an optional array id. + +The first member of the dimension is the buffer resource the atomic +is located in. +The second member is a range into the buffer resource, either for +one or multiple counters. If this is an array, the declaration will have +an unique array id. + +Each counter is 4 bytes in size, and index and ranges are in counters not bytes. +DCL HWATOMIC[0][0] +DCL HWATOMIC[0][1] + +This declares two atomics, one at the start of the buffer and one in the +second 4 bytes. + +DCL HWATOMIC[0][0] +DCL HWATOMIC[1][0] +DCL HWATOMIC[1][1..3], ARRAY(1) + +This declares 5 atomics, one in buffer 0 at 0, +one in buffer 1 at 0, and an array of 3 atomics in +the buffer 1, starting at 1. Properties ^^^^^^^^^^^^^^^^^^^^^^^^ |