Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 891 Bytes

File metadata and controls

25 lines (16 loc) · 891 Bytes
description
Single Instruction Multiple Data

☺ SMID

Overview

SIMD stands for Single Instruction Multiple Data. It is a type of parallel processing that allows a single instruction to be executed on multiple data elements in parallel.

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" %}