awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repository-uri

Awesome GitHub RepositoriesSIMD Vectorizations

Use of wide registers and specialized instructions for parallel data processing at the hardware level.

Distinct from SIMD Optimization: Provides a general runtime/compiler reference for SIMD, not limited to audio or numerical libraries.

Explore 3 awesome GitHub repositories matching operating systems & systems programming · SIMD Vectorizations. Refine with filters or upvote what's useful.

Awesome SIMD Vectorizations GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • cch123/golang-notesAvatar cch123

    cch123/golang-notes

    4,032Vezi pe GitHub↗

    This project is a technical reference and a collection of internal analysis notes focused on the Go language runtime and compiler. It provides a detailed breakdown of the language internals, covering memory management, garbage collection, and the execution model of the scheduler. The material distinguishes itself by providing deep dives into low-level system details, including a reference for Go assembly instructions, register usage, and system call interfacing. It specifically analyzes the internal implementation of concurrency primitives, such as the goroutine scheduling mechanism, channel

    Analyzes the runtime's capability to utilize SIMD instructions for parallel data processing.

    HTMLcodegogolang
    Vezi pe GitHub↗4,032
  • maxbachmann/rapidfuzzAvatar maxbachmann

    maxbachmann/rapidfuzz

    3,958Vezi pe GitHub↗

    This is a Python fuzzy string matching library used for calculating string similarity and edit distances. It serves as a collection of string distance algorithms, a sequence alignment tool, and an approximate string search engine to measure text similarity. The library provides a wide array of metrics to quantify string closeness, including Levenshtein, Jaro-Winkler, Hamming, and Damerau-Levenshtein distances. It supports similarity analysis through longest common subsequence calculations, token-based comparisons, and weighted scoring to account for differences in content and word order. Bey

    Uses SIMD vectorization to process multiple characters simultaneously, accelerating distance calculations.

    Python
    Vezi pe GitHub↗3,958
  • dendibakh/perf-ninjaAvatar dendibakh

    dendibakh/perf-ninja

    3,754Vezi pe GitHub↗

    perf-ninja is a collection of educational resources and curricula focused on CPU architecture, memory hierarchies, SIMD programming, and low-level performance engineering. It provides instructional material and practical labs for identifying and fixing CPU bottlenecks, such as cache misses and branch mispredictions. The project differentiates itself through specialized training in hardware-level optimizations, including the use of compiler intrinsics for SIMD vectorization and the implementation of branchless predicate execution to eliminate pipeline stalls. It also covers advanced binary-lev

    Teaches the use of compiler intrinsics and SIMD instructions to process multiple data elements in parallel.

    C++
    Vezi pe GitHub↗3,754
  1. Home
  2. Operating Systems & Systems Programming
  3. SIMD Vectorizations

Explorează sub-etichetele

  • SIMD String ProcessingSpecialized use of vector instructions to accelerate character scanning and string comparisons. **Distinct from SIMD Vectorizations:** Specific to string manipulation logic rather than general hardware vectorization.
  • Vectorized String ProcessingUsing SIMD instructions to scan, compare, and manipulate multiple characters in a single operation. **Distinct from SIMD Vectorizations:** Distinct from general SIMD Vectorizations: specifically targets character and string manipulation patterns.