> For the complete documentation index, see [llms.txt](https://aisuko.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aisuko.gitbook.io/wiki/ai-techniques/large-language-model/smid.md).

# SMID

## Overview

SIMD stands for <mark style="color:red;">**Single Instruction Multiple Data**</mark>. It is <mark style="color:blue;">**a type of parallel processing**</mark> that <mark style="color:red;">**allows a single instruction to be executed on multiple data elements in parallel**</mark>.

SIMD instructions can greatly increase performance when the same operations are to be performed on multiple data objects.

SIMD extensions are extra instructions that were added to the x86 architecture to support vector-like operations, such as:

* MMX
  * Only worked on integers
* SSE
  * SSE floating-point instructions operate on a new independent register set
  * Arm Neon technology is an advanced SIMD architecture extension
* AVX

## Reference

{% embed url="<https://en.wikipedia.org/wiki/Streaming_SIMD_Extensions>" %}
