---
title: Half-precision floating-point vectors
framework: accelerate
role: collectionGroup
role_heading: API Collection
path: accelerate/half-precision-floating-point-vectors
---

# Half-precision floating-point vectors

Perform operations on vectors that contain half-precision floating-point elements.

## Overview

Overview The simd library provides many functions in this group, in three variants: The default variant—for example, simd_rsqrt(_:) The precise variant—for example, simd_precise_rsqrt(_:) The fast variant—for example, simd_fast_rsqrt(_:) The precise variants are accurate to a few units in the last place (ULPs). The fast variants provide greater speed but may have as little as 8 bits of accuracy for half-precision functions. The compiler flag defines the behavior of the default variant. Ordinarily, the compiler resolves the default variants to their precise counterparts. Set the -ffast-math compiler flag to specify that the default variants of the functions resolve to the fast variants.

## Topics

### Vector data types

- [simd_half1](simd/simd_half1.md)
- [simd_half2](simd/simd_half2.md)
- [simd_half3](simd/simd_half3.md)
- [simd_half4](simd/simd_half4.md)
- [simd_half8](simd/simd_half8.md)
- [simd_half16](simd/simd_half16.md)
- [simd_half32](simd/simd_half32.md)

## See Also

### Floating-Point Vectors

- [Working with Vectors](accelerate/working-with-vectors.md)
- [Single-precision floating-point vectors](accelerate/single-precision-floating-point-vectors.md)
- [Double-precision floating-point vectors](accelerate/double-precision-floating-point-vectors.md)
