awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 个仓库

Awesome GitHub RepositoriesParallel Loop Transformers

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.

Awesome Parallel Loop Transformers GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • genesis-embodied-ai/genesisGenesis-Embodied-AI 的头像

    Genesis-Embodied-AI/Genesis

    29,362在 GitHub 上查看↗

    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.

    Python
    在 GitHub 上查看↗29,362
  • rayon-rs/rayonrayon-rs 的头像

    rayon-rs/rayon

    13,071在 GitHub 上查看↗

    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.

    Rust
    在 GitHub 上查看↗13,071
  • tile-ai/tilelangtile-ai 的头像

    tile-ai/tilelang

    5,226在 GitHub 上查看↗

    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.

    Python
    在 GitHub 上查看↗5,226
  • duemunk/asyncduemunk 的头像

    duemunk/Async

    4,565在 GitHub 上查看↗

    Async 是一个 Swift 库,为 Grand Central Dispatch 提供包装器,以简化异步任务和队列的管理。它作为一个任务调度器,用于代码块的执行、计时和编排。 该项目包含一个任务链式处理器,用于在不同线程间序列化操作而无需嵌套回调结构,以及一个将迭代分布在多个线程上的并发循环包装器。它还具有基于令牌的取消系统,用于在挂起操作运行前从执行队列中跟踪并移除它们。 该库通过协调异步组和同步多个任务以在集体完成后触发操作,涵盖了并发管理功能。

    Transforms standard sequential loops into parallel versions for concurrent execution across multiple threads.

    Swift
    在 GitHub 上查看↗4,565
  • joblib/joblibjoblib 的头像

    joblib/joblib

    4,366在 GitHub 上查看↗

    Joblib 是一套用于并行化计算工作负载和优化大型数值数据集及函数结果存储的实用工具。它作为并行计算库和多进程包装器,将函数执行分配到多个 CPU 核心上,以加速独立任务和计算循环。 该项目提供了一个磁盘缓存框架,将昂贵的函数输出持久化到文件系统,仅在输入参数发生变化时才重新评估。它进一步专注于大型数值数组的序列化,利用高效的压缩和内存映射来优化海量数据集的存储和检索。 该工具包包括并行函数映射功能,并使用可插拔的执行后端来控制任务如何在可用硬件上分配。其存储层涵盖了复杂对象持久化和序列化数据的透明压缩。

    Enables the transformation of standard sequential loops into parallel versions for execution across multiple CPU cores.

    Python
    在 GitHub 上查看↗4,366
  • nixzhu/dev-blognixzhu 的头像

    nixzhu/dev-blog

    3,906在 GitHub 上查看↗

    该项目是一个综合性的 iOS 应用开发框架,专注于构建具有自定义用户界面组件、异步任务管理和本地数据持久化的移动应用。它作为软件工程的技术知识库,提供用于以 Markdown 格式组织和发布架构分析与笔记的工具。 该框架通过一个强大的基于文档的存储层脱颖而出,该层利用 BSON 格式的记录在 NoSQL 文档存储中执行 CRUD 操作。它提供广泛的系统集成功能,包括专门的应用扩展通信、跨沙盒消息传递和原生共享表单呈现,从而允许宿主应用与系统级服务之间的无缝交互。 该项目涵盖了广泛的功能面,包括具有线程安全同步的高级并发管理、卸载到后台的 UI 渲染以保持响应性,以及全面的国际化支持。它还包括面向开发者的工具,用于静态类型生成、自动化资源映射和交互式原型构建,以及用于地理信标监控和自适应图表生成的专门工具。

    Executes loop bodies in parallel across multiple threads to improve performance on large collections.

    在 GitHub 上查看↗3,906
  1. Home
  2. Data & Databases
  3. Collection Iterators
  4. Sequential Iterators
  5. Parallel Loop Transformers

探索子标签

  • Fragment Buffer Loop ValidatorsEnforces restrictions on parallel loops over local fragment buffers, such as requiring non-symbolic loop ranges. **Distinct from Parallel Loop Transformers:** Distinct from Parallel Loop Transformers: focuses on validation of loop constraints over fragment buffers, not general loop transformation.