6 مستودعات
Utilities for transforming standard sequential loops into parallel versions for concurrent execution.
Distinct from Sequential Iterators: Distinct from Sequential Iterators: focuses on the transformation of loop constructs into parallel versions.
Explore 6 awesome GitHub repositories matching data & databases · Parallel Loop Transformers. Refine with filters or upvote what's useful.
Genesis is an embodied AI simulation platform and parallelized robotics simulator designed for training general-purpose robotic agents. It integrates a physics engine for robotics that calculates collisions and movements for rigid bodies, soft tissues, and fluids, alongside a photorealistic 3D rendering engine. The platform features a domain randomization framework to vary environment parameters across parallel simulations, aiding in sim-to-real transfer. It supports the integration of real-world captured light fields and Gaussian splatting to provide photorealistic backgrounds within simulat
Automatically distributes top-level execution loops across available hardware threads to improve performance.
Rayon is a data parallelism library for Rust that provides a framework for converting sequential computations into parallel operations. It enables the transformation of standard data structures and loops into parallel iterators, allowing workloads to be distributed across multiple processor cores. By utilizing a work-stealing scheduler, the library dynamically balances tasks to maximize throughput and minimize execution time. The library distinguishes itself through its focus on safe, scoped task synchronization, which ensures that all spawned operations complete before a scope exits to preve
Transforms standard sequential loops into parallel versions to process collection elements concurrently.
TileLang is a Python-embedded domain-specific language compiler that JIT-compiles and autotunes GPU kernels. It uses a tile-based DSL, automatic software pipelining, and parallel autotuning to generate optimized GPU kernels at runtime. It supports tensor core operations with Pythonic syntax, automatic memory management, and thread mapping. The compiler searches over tile sizes, thread counts, and scheduling policies, compiling and benchmarking candidates in parallel to find the fastest kernel. It also caches compiled binaries and tuning results to disk for reuse across sessions. TileLang inc
Enforces restrictions on parallel loops over local fragment buffers to ensure correctness in GPU kernels.
Async هي مكتبة Swift توفر مغلفاً لـ Grand Central Dispatch لتبسيط إدارة المهام والطوابير غير المتزامنة. تعمل كجدول مهام لتنفيذ وتوقيت وتنسيق كتل الكود. يتضمن المشروع مسلسلاً للمهام لتسلسل العمليات عبر خيوط مختلفة دون هياكل رد اتصال متداخلة (nested callback) ومغلف حلقة متزامن يوزع التكرارات عبر خيوط متعددة. كما يتميز بنظام إلغاء قائم على الرموز لتتبع وإزالة العمليات المعلقة من طابور التنفيذ قبل تشغيلها. تغطي المكتبة إدارة التزامن من خلال تنسيق المجموعات غير المتزامنة ومزامنة المهام المتعددة لتشغيل الإجراءات عند اكتمالها الجماعي.
Transforms standard sequential loops into parallel versions for concurrent execution across multiple threads.
Joblib هي مجموعة من الأدوات لموازاة أعباء العمل الحسابية وتحسين تخزين مجموعات البيانات الرقمية الكبيرة ونتائج الدوال. تعمل كمكتبة للحوسبة المتوازية ومغلف للمعالجة المتعددة (multiprocessing wrapper) يوزع تنفيذ الدوال عبر أنوية معالج متعددة لتسريع المهام المستقلة والحلقات الحسابية. يوفر المشروع إطار عمل للتخزين المؤقت على القرص يقوم بحفظ مخرجات الدوال المكلفة في نظام الملفات، وإعادة تقييمها فقط عند تغير وسائط الإدخال. كما يتخصص في تسلسل المصفوفات الرقمية الكبيرة، باستخدام ضغط فعال وتعيين الذاكرة لتحسين تخزين واسترجاع مجموعات البيانات الضخمة. تتضمن مجموعة الأدوات إمكانيات لتعيين الدوال المتوازية واستخدام خلفيات تنفيذ قابلة للتوصيل للتحكم في كيفية توزيع المهام عبر الأجهزة المتاحة. تغطي طبقة التخزين الخاصة بها استمرارية الكائنات المعقدة والضغط الشفاف للبيانات المتسلسلة.
Enables the transformation of standard sequential loops into parallel versions for execution across multiple CPU cores.
This project is a comprehensive framework for iOS application development, centered on building mobile applications that feature custom user interface components, asynchronous task management, and local data persistence. It serves as a technical knowledge base for software engineering, providing tools to organize and publish architectural analyses and notes in Markdown format. The framework distinguishes itself through a robust document-based storage layer that utilizes BSON-formatted records to perform CRUD operations within a NoSQL document store. It provides extensive system integration ca
Executes loop bodies in parallel across multiple threads to improve performance on large collections.