Skip to content
View Leikoe's full-sized avatar
📐
sxm2 heatsinks don't fit on sxm4 boards
📐
sxm2 heatsinks don't fit on sxm4 boards

Block or report Leikoe

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Leikoe/README.md
  • 👋 Hi, I’m @Leikoe
  • 👀 I’m interested in programming accelerators / Machine learning.
  • 🔥 Mainly using Python / C / Rust
  • 📫 Reach me on discord : @leikowo

Pinned Loading

  1. Llama 3.2 inference in mlx - functio... Llama 3.2 inference in mlx - functional style / no nn.Module
    1
    # Uses entropix's tokenizer & downloaded weights. Saving this file into entropix's repo should work
    2
    
                  
    3
    import math
    4
    from typing import NamedTuple, List
    5
    from pathlib import Path
  2. mnist.c mnist.c Public

    MNIST classifier training in simple, raw C/CUDA. Inspired by llm.c

    C

  3. cuda-matmuls cuda-matmuls Public

    cuda matmul experimentations

    Cuda

  4. minimal objc python bridge minimal objc python bridge
    1
    from typing import Dict, Tuple, Union, Any
    2
    import functools, ctypes, ctypes.util
    3
    import libobjc  # clang2py generated bindings to objc/objc.h and objc/runtime.h
    4
    # note: The Objective-C runtime does not expose enough information to provide completely automatic bindings of all APIs. source: https://pyobjc.readthedocs.io/en/latest/metadata/index.html
    5
    # though it's possible to parse bridgesupport files
  5. torch_to_ggml torch_to_ggml Public archive

    convert a saved pytorch model to gguf and generate as much corresponding ggml c code as possible

    Python 13 5

  6. bloom-filter bloom-filter Public

    A simple bloom filter implementation in java

    Python