About 125,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-accelerated types in .NET - .NET | Microsoft Learn

    Jun 7, 2022 · SIMD (Single instruction, multiple data) provides hardware support for performing an operation on multiple pieces of data, in parallel, using a single instruction.

  3. Difference between SIMD and MIMD - GeeksforGeeks

    Sep 12, 2024 · SIMD stands for Single Instruction Multiple Data that is a specialized type of computer architecture in which the processors perform all calculations on a series of data at …

  4. SIMD library - cppreference.com

    Dec 20, 2024 · The SIMD library provides portable types for explicitly stating data-parallelism and structuring data for more efficient SIMD access. An object of type simd<T> behaves analogue …

  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. The messy reality of SIMD (vector) functions - Johnny's Software Lab

    Jul 4, 2025 · We’ve discussed SIMD and vectorization extensively on this blog, and it was only a matter of time before SIMD (or vector) functions came up. In this post, we explore what SIMD …

  7. How-To: SIMD Programming - by Dennis Andersson

    Sep 27, 2024 · If you’ve been programming for a while, especially at a low level, you have almost certainly heard of SIMD. Single instruction, multiple data (SIMD) is exactly what it sounds like …

  8. 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 …

  9. 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, …

  10. SIMD - Glossary | MDN

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