awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 dépôts

Awesome GitHub RepositoriesDevice Object Linking

Statically linking native object files or bitcode into executables for device-side code reuse.

Distinguishing note: Shortlist candidates refer to URL linking or data object mapping, not low-level binary linking.

Explore 2 awesome GitHub repositories matching operating systems & systems programming · Device Object Linking. Refine with filters or upvote what's useful.

Awesome Device Object Linking GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • iree-org/ireeAvatar de iree-org

    iree-org/iree

    3,819Voir sur GitHub↗

    IREE is an MLIR-based compiler toolchain and runtime designed to translate machine learning models from various frameworks into optimized binaries for execution across diverse hardware targets. It provides a unified pipeline to ingest models from PyTorch, TensorFlow, JAX, and ONNX, lowering them into a common intermediate representation for deployment on CPUs, GPUs, and bare-metal embedded systems. The project distinguishes itself through a bytecode virtual machine and a hardware abstraction layer that decouple high-level model logic from specific hardware instruction sets. It supports sophis

    Statically links compatible bitcode or native object files into executables to reuse device code libraries.

    C++compilercudajax
    Voir sur GitHub↗3,819
  • unikraft/unikraftAvatar de unikraft

    unikraft/unikraft

    3,733Voir sur GitHub↗

    Unikraft is a modular library operating system and unikernel framework designed to compile applications into minimal, bootable virtual machine images. It serves as an OCI-compliant image builder and a cloud-native hypervisor target, enabling the creation of specialized runtimes that include only the specific drivers and libraries required by a single application. The system features a Linux compatibility layer that maps standard API calls and POSIX standards to unikernel libraries, allowing unmodified binaries to run without a full general-purpose kernel. It distinguishes itself by allowing c

    Eliminates traditional system call overhead by linking application object files directly against a ported C library.

    Capplicationcloudcloud-native
    Voir sur GitHub↗3,733
  1. Home
  2. Operating Systems & Systems Programming
  3. Device Object Linking

Explorer les sous-tags

  • Runtime Device Function LinkingDynamic linking of external C functions into device-side code during runtime. **Distinct from Device Object Linking:** Distinct from Device Object Linking: focuses on runtime calls to external C functions rather than static bitcode linking.
  • Static Binary LinkingDirectly linking application object files into a specialized runtime to eliminate system call overhead. **Distinct from Device Object Linking:** Specific to eliminating kernel boundary overhead via direct linking, rather than general device-side object reuse.