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
·

4 dépôts

Awesome GitHub RepositoriesArray Initialization

Creates arrays filled with constants, identity matrices, or sequences.

Distinct from Array Tutorials: Focuses on programmatic initialization, distinct from educational tutorials.

Explore 4 awesome GitHub repositories matching education & learning resources · Array Initialization. Refine with filters or upvote what's useful.

Awesome Array Initialization 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.
  • ml-explore/mlxAvatar de ml-explore

    ml-explore/mlx

    27,047Voir sur GitHub↗

    This project is a machine learning array framework and tensor computation library designed for high-performance numerical computing. It provides a comprehensive suite of tools for constructing and training neural networks, featuring an automatic differentiation engine that facilitates gradient-based optimization and complex mathematical modeling. The library distinguishes itself through a unified memory architecture that allows data to be shared across CPU and GPU devices without explicit copies, significantly reducing data movement overhead. Its execution model relies on a lazy evaluation en

    Provides utilities for initializing arrays with specific shapes, types, and constant values.

    C++mlx
    Voir sur GitHub↗27,047
  • rougier/numpy-100Avatar de rougier

    rougier/numpy-100

    13,812Voir sur GitHub↗

    This project is a curated collection of programming exercises designed to build proficiency in numerical computing and data manipulation. It provides a structured learning path for mastering multidimensional array operations, vectorized arithmetic, and statistical analysis. The repository focuses on developing practical expertise in array-based workflows, emphasizing techniques such as memory management, efficient data processing, and the replacement of explicit loops with vectorized operations. Users engage with hands-on challenges that cover the full lifecycle of numerical data, from initia

    Creates arrays of specified shapes and types, including identity matrices and random values.

    Pythonbinderexercisesnotebook
    Voir sur GitHub↗13,812
  • apachecn/interviewAvatar de apachecn

    apachecn/Interview

    8,944Voir sur GitHub↗

    This project is a comprehensive knowledge base and study resource designed for mastering technical interviews. It provides structured guides, roadmaps, and curricula focused on data structures, algorithms, system design, and frontend engineering to help candidates prepare for software engineering screenings. The repository distinguishes itself by offering a holistic approach to professional advancement. Beyond technical drills, it includes a career development handbook covering resume optimization, salary benchmarking, and strategic negotiation coaching. It also provides detailed methodologie

    Provides guidance on creating two-dimensional arrays to build state tables for dynamic programming.

    Jupyter Notebookinterviewkaggleleetcode
    Voir sur GitHub↗8,944
  • nvidia/warpAvatar de NVIDIA

    NVIDIA/warp

    6,233Voir sur GitHub↗

    Warp is a Python framework that JIT-compiles Python functions into CUDA kernels for GPU-accelerated parallel computation, with built-in automatic differentiation and multi-framework array interoperability. At its core, it provides a GPU kernel compilation system that enables writing and executing custom GPU kernels directly from Python, while supporting automatic gradient computation through those kernels for integration with machine learning pipelines. The framework also includes tile-based cooperative computing, where thread blocks partition into tiles for shared-memory and tensor-core opera

    Creates GPU arrays from Python lists, NumPy arrays, or constant values for kernel input preparation.

    Pythoncudadifferentiable-programminggpu
    Voir sur GitHub↗6,233
  1. Home
  2. Education & Learning Resources
  3. Array Tutorials
  4. Array Initialization

Explorer les sous-tags

  • GPU Array InitializersCreates GPU arrays from Python lists, NumPy arrays, or fills them with a constant value using dedicated helper functions. **Distinct from Array Initialization:** Distinct from Array Initialization: focuses on GPU-specific array creation from host data (Python lists, NumPy) rather than general programmatic initialization.
  • Multi-DimensionalMethods for programmatically creating matrices for use in dynamic programming and state tracking. **Distinct from Array Initialization:** Focuses on the educational creation of 2D arrays for algorithms rather than general array initialization.