diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-03-11 01:37:50 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-11 01:37:50 -0700 |
| commit | d0c06ca7127110a8afeb0ef524a197049892db21 (patch) | |
| tree | cfd3e55c36eec1ae396907d254c907e542e05407 /lib/std/simd.zig | |
| parent | eaca8626b270b5c17d686c77220e2aacb5fd908f (diff) | |
| parent | 139734154070b0e229df4c6c0e3297badd1d4fdc (diff) | |
| download | zig-d0c06ca7127110a8afeb0ef524a197049892db21.tar.gz zig-d0c06ca7127110a8afeb0ef524a197049892db21.zip | |
Merge pull request #19208 from ziglang/rework-autodoc
Redesign How Autodoc Works
Diffstat (limited to 'lib/std/simd.zig')
| -rw-r--r-- | lib/std/simd.zig | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/std/simd.zig b/lib/std/simd.zig index c3ae2d8dbe..7fe9b839cc 100644 --- a/lib/std/simd.zig +++ b/lib/std/simd.zig @@ -1,7 +1,9 @@ -//! This module provides functions for working conveniently with SIMD (Single Instruction; Multiple Data), -//! which may offer a potential boost in performance on some targets by performing the same operations on -//! multiple elements at once. -//! Please be aware that some functions are known to not work on MIPS. +//! SIMD (Single Instruction; Multiple Data) convenience functions. +//! +//! May offer a potential boost in performance on some targets by performing +//! the same operations on multiple elements at once. +//! +//! Some functions are known to not work on MIPS. const std = @import("std"); const builtin = @import("builtin"); |
