Live data from Hacker News

Viewing profile — gitpusher42

gitpusher42

HN member
Joined
Sat, Nov 17, 2018, 8:35 AM UTC
HN karma
459
Public activity
73 items

About gitpusher42

No profile information was provided.

Recent public activity

  1. comment
    Comment #49171900

    Yeah, original TurboFieldfare supports Gemma https://github.com/drumih/turbo-fieldfare

  2. comment
    Comment #49165069

    Thank you for using TurboFieldfare as a starting point for this project and thank you for mentioning it at the README. I am glad it inspired more people to explore area of on-devic…

  3. comment
    Comment #49141950

    It is only a wild guess, but if you have 256gb version and a lot of apps running it can be pretty slow.

  4. comment
    Comment #49132799

    Thank you for testing and sharing results! I think I might understand your use case. You ssh the Mac and want something like `ollama run` with an interactive chat in terminal. Am I…

  5. comment
    Comment #49132706

    I think there is a limit based on MoE number of active parameters and quantisation, bytes count for active experts. But I believe we will see more project like this for different m…

  6. comment
    Comment #49132681

    Uh, maybe, who knows. I am pretty bad solving leetcode, btw

  7. comment
    Comment #49120310

    Yeah, gpt-oss-120b is also MoE, so the same ssd-streaming and caching ideas should work. Feel free to fork and try implementing it!

  8. comment
    Comment #49120277

    Yeah, it must be exactly the same. The same weights are used, nothing skipped or pruned. But it might have differ to MLX for greedy decode because of small floating-point nums diff…

  9. comment
    Comment #49109034

    yeah, looks like a page cache matters a lot I tested on mine m5 pro with 8gb memory pressure, got 27t/s instead of 35t/s Someone tested on m4 max. In regular state it was 48tok/s, …

  10. comment
  11. comment
  12. comment
    Comment #49108576

    Apple does something similar with their latest foundation model. They process input prompt and based on results they preload required experts. Quite neat solution for the edge devi…

  13. comment
    Comment #49108495

    Yeah, sure! You can select different options in the app settings at the right panel, it shows how much memory it will use For CLI and Server, use --max-context

  14. comment
    Comment #49108305

    uh, tried most of this mmap benchmark did basically page touch experiment and cold reads were much slower, unfortunately (10ms vs 3ms) I tried MADV_WILLNEED, F_RDADVISE and preadv.…

  15. comment
    Comment #49107971

    afaik there is some research at this area. Also the new apple foundation model uses related idea. they process the whole prompt and based on prompt load required experts and use on…

  16. comment
    Comment #49107883

    Yeah, must be possible. Not fast, but possible if you have enough ram. I think you can search online for projects, I think I saw something related

  17. comment
    Comment #49107740

    uh, don't worry. Just install the latest Xcode from the App Store. It includes everything you need to run this project

  18. comment
    Comment #49107642

    It heavily relies on M-series Mac unified memory architecture. And shaders are written using Metal, Apple's own gpu programming technology. It cannot be ported directly to classic …

  19. comment
    Comment #49107494

    Not sure it will be really usable. Check for Flash-Moe and Colibri repos A lot of request for qwen3.6 moe, it might worth exploring

  20. comment
    Comment #49107479

    Yeah, Gemma is not the best for coding I guess. qwen must be better

  21. comment
    Comment #49107342

    Yeah, the same ideas should work for qwen. You can try porting this engine to use Owen. Owen 3.6-35b-a3b was my initial idea, but I switched to Gemma because of its simpler archite…

  22. comment
    Comment #49107318

    Thank you for testing and sharing, it is useful info!

  23. comment
    Comment #49107305

    Thank you very much for sharing! Great results and useful info!

  24. comment
    Comment #49104667

    Thanks! Will try!

  25. comment
    Comment #49104643

    uh, it's a bit difficult to discuss the classical approach with vRAM and regular RAM. Not really familiar with optimisations and hacks, I always worked with apple platforms and sha…