SIMD Video Instructions Instructions
6 PTX instructions in this category - click any row for encoding, pseudocode, and full documentation.
| Mnemonic | Syntax | PTX Version | Summary |
|---|---|---|---|
| vadd2 | // SIMD instruction with secondary SIMD merge operation vadd2.dtype.atype.btype{.sat} d{.mask}, a{.asel}, b{.bsel}, c; |
PTX ISA 3.0 | Two-way SIMD parallel arithmetic operation with secondary operation. |
| vadd4 | // SIMD instruction with secondary SIMD merge operation vadd4.dtype.atype.btype{.sat} d{.mask}, a{.asel}, b{.bsel}, c; |
PTX ISA 3.0 | Four-way SIMD parallel arithmetic operation with secondary operation. |
| vset2 | // SIMD instruction with secondary SIMD merge operation vset2.atype.btype.cmp d{.mask}, a{.asel}, b{.bsel}, c; |
PTX ISA 3.0 | Two-way SIMD parallel comparison with secondary operation. |
| vset4 | // SIMD instruction with secondary SIMD merge operation vset4.atype.btype.cmp d{.mask}, a{.asel}, b{.bsel}, c; |
PTX ISA 3.0 | Four-way SIMD parallel comparison with secondary operation. |
| vsub2 | // SIMD instruction with secondary SIMD merge operation vsub2.dtype.atype.btype{.sat} d{.mask}, a{.asel}, b{.bsel}, c; |
PTX ISA 3.0 | Two-way SIMD parallel arithmetic operation with secondary operation. |
| vsub4 | // SIMD instruction with secondary SIMD merge operation vsub4.dtype.atype.btype{.sat} d{.mask}, a{.asel}, b{.bsel}, c; |
PTX ISA 3.0 | Four-way SIMD parallel arithmetic operation with secondary operation. |