Viewing profile — pythongiant
pythongiant
HN member- Joined
- Tue, Feb 26, 2019, 11:18 AM UTC
- HN karma
- 13
- Public activity
- 22 items
- HN profile
- View on Hacker News ↗
About pythongiant
Recent public activity
-
comment
Comment #49259582
Tenosra is all about making AI more efficient and resourceful you can read more abour it at: https://www.tenosra.com/proxima
-
story
Show HN: Proxima serves 4x more requests with no hardware change on vLLM
hey everyone, i decided to make a vLLM plugin that implements the Star-KV paper. the results are quiet promising with a decode kernel thats faster than FA2 in higher batch sizes. w…
- story
- story
-
comment
Comment #48816465
Hey guys, i'm especially interested in feedback on the kernel design and integration onto mlx lm. Its on pypi as well as a simple pip install mlx-turboquant :P
-
story
Show HN: TurboQuant for mlx-lm (Apple Silicon)
Hi HN, I built mlx-turboquant, an implementation of Google's TurboQuant KV-cache compression algorithm for Apple's MLX framework. The repository includes quality benchmarks, memory…
-
comment
Comment #48234211
KVBoost is a drop-in replacement for AutoModelForCausalLM. Same API surface (KVBoost.from_pretrained(...), engine.generate(...)), but with cross-request KV reuse, FlashAttention-2,…
-
comment
Comment #48234000
Here's the repository incase anyone wants to have a look at the code. leave a star if you find it interesting :P https://github.com/pythongiant/KVBoost
-
comment
Comment #48233420
[flagged]
-
comment
Comment #48233397
[flagged]
-
comment
Comment #48233361
Thanks! this is a weekend project that i am working on in the side just to learn more about ml engineering and custom cuda kernels. didnt think much about the website
-
comment
Comment #48233344
[flagged]
-
comment
Comment #48233313
Makes sense, fixing that. thanks!
-
comment
Comment #48233311
my initial choice was to use Rust for this actually (Probably should've too :P) but i went with python for an initial mvp/skeleton for a future rewrite
-
comment
Comment #48232094
KVBoost is a chunk-level KV cache reuse library for HuggingFace models (pip install kvboost). It supports two recompute strategies (selective boundary and CacheBlend), int8/int4 KV…
- comment
- story
-
comment
Comment #48029913
[dead]
- comment
-
comment
Comment #46703920
just published a beginner-friendly, hands-on guide to GPU programming with CUDA aimed at folks who are comfortable with basic programming but new to parallel computing. Instead of …
- story
-
story
Show HN: I built GPT from scratch to understand how it works
If you’ve ever been curious about how GPT actually works under the hood, I built a small project you might find interesting. I implemented a GPT-style transformer from scratch in a…