About 118,000 results
Open links in new tab
  1. Single instruction, multiple data - Wikipedia

    Single instruction, multiple data (SIMD) is a type of parallel computing (processing) in Flynn's taxonomy. SIMD describes computers with multiple processing elements that perform the …

  2. SIMD - Glossary | MDN

    Jul 11, 2025 · SIMD (pronounced "sim-dee") is short for Single Instruction/Multiple Data which is one classification of computer architectures.

  3. From Theory to Best Practices: Single Instruction, Multiple Data (SIMD)

    Dec 24, 2023 · What is Single Instruction, Multiple Data (SIMD)? SIMD, or Single Instruction, Multiple Data, refers to a class of computer architecture that allows a single CPU instruction to …

  4. A Primer to SIMD Architecture: From Concept to Code - Medium

    Mar 15, 2024 · In this article, we talked about the how SIMD works, history of SIMD specific to x86_64 architecture and demonstrated a practical example of how SIMD intrinsics can be …

  5. Comprehensive Guide to SIMD in C++ · GitHub

    Mar 14, 2025 · 1. Introduction to SIMD What is SIMD? SIMD (Single Instruction, Multiple Data) is a parallel computing model where one instruction operates on multiple data elements …

  6. What is SIMD (Single Instruction Multiple Data)? - EComputerTips

    SIMD (Single Instruction Multiple Data) is a parallel processing technique that enables processors to perform the same operation on multiple data points simultaneously. Learn how SIMD works, …

  7. SIMD (Single Instruction Multiple Data) :: Parallel Programming

    The single multiple data instruction (SIMD) is a parallel treatment architecture that allows a processor to execute the same instruction on several data simultaneously. SIMD is a …

  8. SIMD (Single Instruction Multiple Data Processing) - Springer

    Single instruction multiple data (SIMD), as the name suggests, takes an operation specified in one instruction and applies it to more than one set of data elements at the same time.

  9. High Performance Programming via SIMD: Single Instruction, Multiple Data

    This use of bitwise operations is often called "SIMD within a register (SWAR)" or "word-SIMD"; see Sean Anderson's "Bit Twiddling Hacks" for a variety of amazing examples. But the most …

  10. Single Instruction Multiple Data

    Single Instruction Multiple Data (SIMD) is a parallel computing paradigm in which a single operation executes simultaneously on multiple elements of data, allowing the same instruction …