Viewing profile — gitpusher42
gitpusher42
HN member- Joined
- Sat, Nov 17, 2018, 8:35 AM UTC
- HN karma
- 459
- Public activity
- 73 items
- HN profile
- View on Hacker News ↗
About gitpusher42
No profile information was provided.
Recent public activity
-
comment
Comment #49171900
Yeah, original TurboFieldfare supports Gemma https://github.com/drumih/turbo-fieldfare
-
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…
-
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.
-
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…
-
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…
-
comment
Comment #49132681
Uh, maybe, who knows. I am pretty bad solving leetcode, btw
-
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!
-
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…
-
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, …
- comment
- comment
-
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…
-
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
-
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.…
-
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…
-
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
-
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
-
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 …
-
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
-
comment
Comment #49107479
Yeah, Gemma is not the best for coding I guess. qwen must be better
-
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…
-
comment
Comment #49107318
Thank you for testing and sharing, it is useful info!
-
comment
Comment #49107305
Thank you very much for sharing! Great results and useful info!
-
comment
Comment #49104667
Thanks! Will try!
-
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…