frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Berkeley Mono

https://usgraphics.com/public-affairs/bulletins/BT-002
1•carlos-menezes•21s ago•0 comments

Google: Lyria 2

https://deepmind.google/technologies/lyria/
1•georgehill•1m ago•0 comments

Adobe turns subscription screw again, telling users to pay up or downgrade

https://www.theregister.com/2025/05/20/adobe_price_hikes/
1•rntn•1m ago•0 comments

Show HN: Streamix – A modern reactive stream library for JavaScript/TS

https://github.com/actioncrew/streamix
1•oleksii-shepel•3m ago•0 comments

I was alone on shift when Newark air traffic control went dark

https://www.thetimes.com/us/news-today/article/air-traffic-controller-newark-airport-nj-9zpp3z9ww
1•whalesalad•4m ago•0 comments

Show HN: Jobamate – Automate your job search

https://jobamate.com/
2•ryguyx9•4m ago•0 comments

Google Releases NotebookLM App for iOS and Android

https://www.macrumors.com/2025/05/20/google-releases-notebooklm-app-for-ios-and-android/
1•tosh•5m ago•0 comments

Google Translate Now Available as Default Translation App on iPhone and iPad

https://www.macrumors.com/2025/05/19/google-translate-default-option-ios/
1•tosh•5m ago•0 comments

Arc-AGI-2: A New Challenge for Frontier AI Reasoning Systems

https://arcprize.org/blog/arc-agi-2-technical-report
2•meetpateltech•6m ago•0 comments

Chicago Sun-Times prints summer reading list full of fake books

https://arstechnica.com/ai/2025/05/chicago-sun-times-prints-summer-reading-list-full-of-fake-books/
1•pyridines•6m ago•0 comments

Show HN: Olelo Foil - NACA Airfoil Sim

https://foil.olelohonua.com/
3•rbrownmh•7m ago•1 comments

Saudi Aramco Joins the Open Group as Platinum Member

https://www.opengroup.org/Saudi-Aramco-Joins-The-Open-Group-as-Platinum-Member
2•swills•7m ago•0 comments

How Do You Evaluate Your AI Models?

3•surendersingh•9m ago•0 comments

Amp: An agentic coding tool for VSCode / CLI

https://ampcode.com/manual
2•vladstudio•9m ago•1 comments

Fidji Simo, the Instacart CEO Tasked with Getting OpenAI to Turn a Profit

https://www.wsj.com/tech/ai/fidji-simo-openai-245dd113
1•thoughtpeddler•10m ago•0 comments

Show HN: Open Evaluation

https://openevaluation.ai/
1•cjcenizal•12m ago•0 comments

Apple to Open AI Models to Developers, Betting That It Will Spur New Apps

https://www.bloomberg.com/news/articles/2025-05-20/apple-to-open-ai-models-to-developers-betting-that-it-will-spur-new-apps
1•spenvo•12m ago•0 comments

Who were the ancient Denisovans? Fossils reveal secrets about mysterious humans

https://www.nature.com/articles/d41586-025-01549-3
1•rbanffy•14m ago•0 comments

Spring AI 1.0 Released, Streamlines AI App Development with Broad Model Support

https://www.infoq.com/news/2025/05/spring-ai-1-0-streamlines-apps/
2•rbanffy•16m ago•0 comments

Show HN: Rocketship – Open-source E2E testing for event-driven systems

https://github.com/rocketship-ai/rocketship
7•magius18•17m ago•0 comments

Show HN: Juvio – UV Kernel for Jupyter

https://github.com/OKUA1/juvio
7•okost1•19m ago•0 comments

Show HN: I build an AI medical scrub for physicians

https://patientnotes.ai
1•vadimk_77•20m ago•0 comments

Perfect Code, No Secrets

https://funnelstory.ai/blog/engineering/perfect-code-no-secrets
2•preetamjinka•22m ago•0 comments

I built a Telegram bot for crypto arbitrage alerts 20 exchanges flexible signals

2•quatro•24m ago•0 comments

Amplification of epidemic spread by individuals exposed to misinformation

https://www.nature.com/articles/s44260-025-00038-y
1•rbanffy•26m ago•1 comments

Pgline – PostgreSQL node.js driver written in TypeScript

https://github.com/stanNthe5/pgline
1•theThree•26m ago•0 comments

LightLab: Controlling Light Sources in Images with Diffusion Models

https://nadmag.github.io/LightLab/
1•billconan•27m ago•0 comments

Robin: A multi-agent system for automating scientific discovery

https://arxiv.org/abs/2505.13400
6•nopinsight•31m ago•1 comments

Show HN: I Launched an Agency Framer Template Celebrating with a Discount

https://www.framer.com/marketplace/templates/kierkegaard/
1•brownieman1325•31m ago•0 comments

Show HN: A browser-based tone generator built with the Web Audio API

https://maketonesonline.com/
2•eddguzzo•31m ago•0 comments
Open in hackernews

llm-d, Kubernetes native distributed inference

https://llm-d.ai/blog/llm-d-announce
64•smarterclayton•4h ago

Comments

anttiharju•1h ago
I wonder if this is preferable to kServe
smarterclayton•1h ago
llm-d would make sense if you are running a very large production LLM serving setup - say 5+ full H100 hosts. The aim is to be much more focused than kserve is on exactly the needs of serving LLMs. It would of course be possible to run alongside kserve, but the user we are targeting is not typically a kserve deployer today.
anttiharju•1h ago
Do you think https://github.com/openai/CLIP can be ran on it? LLM makes me think of chatbots but I suppose because it's inference-based it would work. Somewhat unclear on what's the difference between LLMs and inference, I think inference is the type of compute LLMs use.

I wonder if inference-d would be a fitting name.

smarterclayton•1h ago
Inference is the process of evaluating a model ("inferring" a response to the inputs). LLMs are uniquely difficult to serve because they push the limits on the hardware.

The models we support come from the model server vLLM https://docs.vllm.ai/en/latest/models/supported_models.html, which has a focus on large generative models. I don't see CLIP in the list.

dzr0001•1h ago
I did a quick scan of the repo and didn't see any reference to Ray. Would this indicate that llm-d lacks support for pipeline parallelism?
qntty•51m ago
I believe this is a question you should ask about vLLM, not llm-d. It looks like vLLM does support pipeline parallelism via Ray: https://docs.vllm.ai/en/latest/serving/distributed_serving.h...

This project appears to make use of both vLLM and Inference Gateway (an official Kubernetes extension to the Gateway resource). The contributions of llm-d itself seems to mostly be a scheduling algorithm for load balancing across vLLM instances.

smarterclayton•49m ago
We inherit any multi-host support from vLLM, so https://docs.vllm.ai/en/latest/serving/distributed_serving.h... would be the expected path.

We plan to publish examples of multi-host inference that leverages LeaderWorkerSets - https://github.com/kubernetes-sigs/lws - which helps run ranked serving workloads across hosts. LeaderWorkerSet is how Google supports both TPU and GPU multi-host deployments - see https://github.com/kubernetes-sigs/lws/blob/main/config/samp... for an example.

Edit: Here is an example Kubernetes configuration running DeepSeek-R1 on vLLM multi-host using LeaderWorkerSet https://github.com/kubernetes-sigs/wg-serving/blob/main/serv.... This work would be integrated into llm-d.

rdli•47m ago
This is really interesting. For SOTA inference systems, I've seen two general approaches:

* The "stack-centric" approach such as vLLM production stack, AIBrix, etc. These set up an entire inference stack for you including KV cache, routing, etc.

* The "pipeline-centric" approach such as NVidia Dynamo, Ray, BentoML. These give you more of an SDK so you can define inference pipelines that you can then deploy on your specific hardware.

It seems like LLM-d is the former. Is that right? What prompted you to go down that direction, instead of the direction of Dynamo?

qntty•43m ago
It sounds like you might be confusing different parts of the stack. NVIDIA Dynamo for example supports vLLM as the inference engine. I think you should think of something like vLLM as more akin to GUnicorn, and llm-d as an application load balancer. And I guess something like NVIDIA Dynamo would be like Django.
smarterclayton•9m ago
llm-d is intended to be three clean layers:

1. Balance / schedule incoming requests to the right backend

2. Model server replicas that can run on multiple hardware topologies

3. Prefix caching hierarchy with well-tested variants for different use cases

So it's a 3-tier architecture. The biggest difference with Dynamo is that llm-d is using the inference gateway extension - https://github.com/kubernetes-sigs/gateway-api-inference-ext... - which brings Kubernetes owned APIs for managing model routing, request priority and flow control, LoRA support etc.