aboutsummaryrefslogtreecommitdiff
path: root/core/simd
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 20:40:13 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-09 20:40:13 +0200
commit2bc409eab53bb7208ec59d431112489eb9d226db (patch)
tree386e11a8e30d77637a65474d9ef71a0d7c4797f5 /core/simd
parent8a35acd50609e3ac1463bffebc79955b7ea619b8 (diff)
More package lines.
Diffstat (limited to 'core/simd')
-rw-r--r--core/simd/simd.odin2
-rw-r--r--core/simd/x86/doc.odin2
2 files changed, 3 insertions, 1 deletions
diff --git a/core/simd/simd.odin b/core/simd/simd.odin
index da76ed49b..3aee09944 100644
--- a/core/simd/simd.odin
+++ b/core/simd/simd.odin
@@ -1,5 +1,5 @@
/*
-The SIMD support package.
+package simd implements cross-platform SIMD support types and procedures.
SIMD (Single Instruction Multiple Data), is a CPU hardware feature that
introduce special registers and instructions which operate on multiple units
diff --git a/core/simd/x86/doc.odin b/core/simd/x86/doc.odin
new file mode 100644
index 000000000..1a43fa3aa
--- /dev/null
+++ b/core/simd/x86/doc.odin
@@ -0,0 +1,2 @@
+// package x86 implements SIMD intrinsics specific to the Intel x86 and AMD64 architectures.
+package simd_x86 \ No newline at end of file