Module packed
NVPTX Packed data types (SIMD)
Packed Data Types is what PTX calls SIMD types. See PTX ISA (Packed Data Types) for a full reference.
Structs
- f16x2 PTX-specific 32-bit wide floating point (f16 x 2) vector type
Functions
- f16x2_add Add two values, round to nearest even
- f16x2_fma Fused multiply-add, round to nearest even
- f16x2_max Find the maximum of two values
- f16x2_max_nan Find the maximum of two values, NaNs pass through.
- f16x2_min Find the minimum of two values
- f16x2_min_nan Find the minimum of two values, NaNs pass through.
- f16x2_mul Multiply two values, round to nearest even
- f16x2_neg Arithmetic negate
- f16x2_sub Subtract two values, round to nearest even
- llvm_f16x2_maximum
- llvm_f16x2_minimum