awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
patricklam avatar

patricklam/p4p-2015

0
View on GitHub↗
72 نجوم·24 تفرعات·TeX·2 مشاهدات

P4p 2015

ECE 459: Programming for Performance, Winter 2015

Features

  • Systems Programming - Techniques for profiling and rearchitecting high-performance software systems.

سجل النجوم

مخطط تاريخ النجوم لـ patricklam/p4p-2015مخطط تاريخ النجوم لـ patricklam/p4p-2015

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Start searching with AI

بدائل مفتوحة المصدر لـ P4p 2015

مشاريع مفتوحة المصدر مشابهة، مرتبة حسب عدد الميزات المشتركة مع P4p 2015.
  • cfenollosa/os-tutorialالصورة الرمزية لـ cfenollosa

    cfenollosa/os-tutorial

    30,551عرض على GitHub↗

    This project is an educational curriculum designed to teach the fundamentals of operating system development and low-level systems programming. It provides a structured sequence of lessons and code samples that guide users through building a functional kernel and bootloader from scratch, enabling a practical understanding of how software interacts directly with computer hardware. The repository distinguishes itself by focusing on the core mechanics of bare-metal execution. It covers the implementation of essential system components, including assembly-based bootloaders that transition process

    C
    عرض على GitHub↗30,551
  • jamesroutley/write-a-hash-tableالصورة الرمزية لـ jamesroutley

    jamesroutley/write-a-hash-table

    4,345عرض على GitHub↗

    This project is a pedagogical implementation of a hash table in C, built from scratch using open addressing and linear probing for collision resolution. It serves as a computer science algorithm demo, demonstrating how to construct a fundamental key-value store at a low level. The implementation covers the core operations of an associative array: inserting a key-value pair, looking up a value by its key, and deleting a pair. It uses a hash function to compute storage locations, maps hash values to array indices with the modulo operator, and resolves collisions by scanning sequentially through

    cdata-structureshash-tables
    عرض على GitHub↗4,345
  • karpathy/llm.cالصورة الرمزية لـ karpathy

    karpathy/llm.c

    30,230عرض على GitHub↗

    This project is a low-dependency engine designed for training large language models using native C and CUDA. It provides a bare-metal environment for tensor computation, allowing for the execution of neural network operations directly on hardware accelerators without the overhead of high-level software abstractions. The framework distinguishes itself by implementing manual gradient backpropagation and custom hardware-specific kernels, providing granular control over memory mapping and computational precision. It supports distributed training across multiple graphics processors and compute nod

    Cuda
    عرض على GitHub↗30,230
  • angrave/systemprogrammingالصورة الرمزية لـ angrave

    angrave/SystemProgramming

    5,734عرض على GitHub↗

    This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core operating system concepts of process management through the fork-exec-wait model, dynamic memory allocation using implicit free list heap allocators, inode-based file systems, inter-process communication via pipes and shared memory, POSIX threads with synchronization primitives, signal-based asynchronous notification, virtual memory with page table translation, and runtime diagnostics using Valgrind and GDB. The textbook distinguishes itself by providing practical, implementation

    عرض على GitHub↗5,734
عرض جميع البدائل الـ 10 لـ P4p 2015→

الأسئلة الشائعة

ما هي وظيفة patricklam/p4p-2015؟

ECE 459: Programming for Performance, Winter 2015

ما هي الميزات الرئيسية لـ patricklam/p4p-2015؟

الميزات الرئيسية لـ patricklam/p4p-2015 هي: Systems Programming.

ما هي البدائل مفتوحة المصدر لـ patricklam/p4p-2015؟

تشمل البدائل مفتوحة المصدر لـ patricklam/p4p-2015: angrave/systemprogramming — This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core… cfenollosa/os-tutorial — This project is an educational curriculum designed to teach the fundamentals of operating system development and… jamesroutley/write-a-hash-table — This project is a pedagogical implementation of a hash table in C, built from scratch using open addressing and linear… karpathy/llm.c — This project is a low-dependency engine designed for training large language models using native C and CUDA. It… nicklockwood/retrorampage — The first chapters of Retro Rampage are now available as a video tutorial series, produced by the great folks at… ssloy/tinykaboom — A brief computer graphics / rendering course.