awesome-repositories.com
Blog
MCP
awesome-repositories.com

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

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

4 Repos

Awesome GitHub RepositoriesTensor Shape Inferences

Automatic inference of tensor shapes from operations, reporting mismatches without manual annotations.

Distinct from Dynamic Tensor Shapes: Distinct from Dynamic Tensor Shapes: focuses on compile-time inference of shapes rather than runtime dimension modification.

Explore 4 awesome GitHub repositories matching artificial intelligence & ml · Tensor Shape Inferences. Refine with filters or upvote what's useful.

Awesome Tensor Shape Inferences GitHub Repositories

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

    facebook/pyrefly

    5,390Auf GitHub ansehen↗

    Pyrefly is a static type checker for Python that operates as a language server, delivering real-time diagnostics, completions, and navigation in any editor supporting the Language Server Protocol. It also performs static tensor shape analysis, using symbolic dimension variables and arithmetic to verify shape consistency in deep learning models without runtime execution. Beyond core type checking, Pyrefly supports gradual adoption workflows: it can generate a baseline of known errors so only new issues are reported, migrate configuration from other type checkers, and automatically suppress exi

    Infers tensor shapes automatically from operations and reports mismatches without manual annotations.

    Rustcode-qualitycontributions-welcomegood-first-issue
    Auf GitHub ansehen↗5,390
  • tile-ai/tilelangAvatar von tile-ai

    tile-ai/tilelang

    5,226Auf GitHub ansehen↗

    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

    Queries supported tensor instruction shapes from the target architecture for instruction selection.

    Python
    Auf GitHub ansehen↗5,226
  • sksq96/pytorch-summaryAvatar von sksq96

    sksq96/pytorch-summary

    4,054Auf GitHub ansehen↗

    pytorch-summary ist eine Sammlung von Utilities für PyTorch-neuronale Netze, die dazu dienen, Modellzusammenfassungen zu generieren, Speicheranforderungen zu berechnen und Layer-für-Layer-Tensor-Shapes zu visualisieren. Es fungiert als Reporting-Tool, das detaillierte Aufschlüsselungen von Netzwerkschichten und Ausgabe-Shapes bereitstellt, um beim Debugging und der Inspektion von Modellen zu unterstützen. Das Projekt bietet spezialisierte Funktionen zur Schätzung des Gesamtspeicherverbrauchs von Forward- und Backward-Passes basierend auf Eingabedimensionen und Parameteranzahl. Es generiert menschenlesbare Visualisierungen von Modellstrukturen, um architektonische Entwürfe zu verifizieren und Dimensionskonflikte über Schichten hinweg zu identifizieren. Das Tool implementiert strukturelle Analysen durch rekursive Modul-Traversierung, Hook-basiertes Tensor-Tracking und eingabegesteuerte Shape-Inferenz. Diese Fähigkeiten ermöglichen die Aggregation von Parameteranzahlen und das Mapping des Datenflusses zwischen aufeinanderfolgenden Operationen.

    Intercepts PyTorch forward passes using hooks to record the exact shape of tensors at every layer.

    Pythondeep-learningkeraspytorch
    Auf GitHub ansehen↗4,054
  • city96/comfyui-ggufAvatar von city96

    city96/ComfyUI-GGUF

    3,291Auf GitHub ansehen↗

    ComfyUI-GGUF is a memory optimizer and model loader for ComfyUI that enables the execution of large transformer-based generative models using quantized weights. It provides a system for loading GGUF formatted weights within a node-based diffusion interface to reduce GPU memory consumption. The project includes a quantization tool for converting standard model checkpoints into compressed binary formats and a tensor fixer to restore missing keys and correct architectures in binary model files. These utilities ensure that compressed models remain functional during inference on hardware with limi

    Corrects tensor shapes and restores missing keys in model architectures to ensure functional inference.

    Python
    Auf GitHub ansehen↗3,291
  1. Home
  2. Artificial Intelligence & ML
  3. Dynamic Tensor Shapes
  4. Tensor Shape Inferences

Unter-Tags erkunden

  • Runtime Shape TrackingCapturing actual tensor dimensions during a forward pass using execution hooks. **Distinct from Tensor Shape Inferences:** Distinct from Tensor Shape Inferences: focuses on recording runtime shapes via hooks rather than compile-time or static inference.
  • Tensor Instruction Shape QueriesQuerying of tensor instruction shapes supported by the target architecture for instruction selection. **Distinct from Tensor Shape Inferences:** Distinct from Tensor Shape Inferences: focuses on querying supported hardware instruction shapes, not inferring shapes from operations.