awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 Repos

Awesome GitHub RepositoriesMulti-threaded Memory Management

Low-level memory management strategies specifically designed to scale across many CPU cores with minimal lock contention.

Distinct from Thread-Aware Memory Analyzers: Focuses on the allocator's internal concurrency strategy rather than external analyzers or locking mechanisms.

Explore 3 awesome GitHub repositories matching operating systems & systems programming · Multi-threaded Memory Management. Refine with filters or upvote what's useful.

Awesome Multi-threaded Memory Management GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • jemalloc/jemallocAvatar von jemalloc

    jemalloc/jemalloc

    10,950Auf GitHub ansehen↗

    jemalloc is a general purpose C memory allocator designed as a replacement for the standard library malloc and free functions. It is a multi-threaded allocation library that emphasizes fragmentation avoidance and scalable concurrency for high-performance applications. The project reduces lock contention by using multiple independent memory arenas and thread-local cache layers. It minimizes latency by offloading the reclamation of unused memory pages to asynchronous background threads and utilizes huge page metadata storage to reduce translation lookaside buffer misses. The system includes a

    Reduces lock contention and fragmentation when allocating memory across many CPU cores in high-performance environments.

    C
    Auf GitHub ansehen↗10,950
  • mit-pdos/xv6-publicAvatar von mit-pdos

    mit-pdos/xv6-public

    9,466Auf GitHub ansehen↗

    xv6 is a Unix-like educational operating system designed for teaching kernel concepts. It is implemented as an instructional kernel for x86 and RISC-V architectures, featuring a virtual memory manager and support for symmetric multiprocessing. The system is designed to demonstrate core OS principles through a simplified re-implementation of Unix Version 6. It provides a controlled environment for studying system calls, trap handling, and process lifecycles. Its capability surface covers process management, including scheduling and context switching, and memory management via page tables for

    Uses spinlocks to coordinate memory access across multiple processors to ensure data consistency.

    C
    Auf GitHub ansehen↗9,466
  • openmathlib/openblasAvatar von OpenMathLib

    OpenMathLib/OpenBLAS

    7,470Auf GitHub ansehen↗

    OpenBLAS is a high-performance implementation of the Basic Linear Algebra Subprograms standard designed for numerical computing and matrix operations. It serves as a hardware-accelerated numerical library and optimized math kernel library, providing a computational engine for large-scale matrix multiplication and vector operations. The library distinguishes itself through the use of hand-tuned assembly kernels and SIMD instruction mapping, such as AVX and SVE, to maximize floating-point performance on specific CPU architectures. It features a multi-threaded framework that manages parallel exe

    Manages internal memory buffers and threading backends to scale linear algebra operations across CPU cores.

    Cblaslapacklapacke
    Auf GitHub ansehen↗7,470
  1. Home
  2. Operating Systems & Systems Programming
  3. Multi-threaded Memory Management

Unter-Tags erkunden

  • Inter-CPU Memory SynchronizationMechanisms to ensure data consistency across multiple physical processor cores. **Distinct from Multi-threaded Memory Management:** Focuses on the use of spinlocks for multi-CPU consistency rather than just general multi-threaded allocator strategies.