frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Leymosun Science: Quantum Research Toolkit

https://github.com/msuzen/leymosun
1•northlondoner•5m ago•1 comments

YouTube may expose your channel and channel name if you share video links

https://twitter.com/KiwiFarmsDotNet/status/2066156508455240086
1•exploraz•6m ago•1 comments

Firefox 152 Now Available with JPEG-XL Support

https://www.phoronix.com/news/Firefox-152-Download
2•eln1•8m ago•0 comments

AATF – An open spec for recording why AI agents make decisions

https://github.com/wdh107/agent-audit-trail
1•wdh107•9m ago•0 comments

Cross-Modal Representation Alignment for Time-to-Event Modeling

https://arxiv.org/abs/2606.15038
1•ilreb•12m ago•0 comments

Show HN: Pokémon Showdown Live Battle Assistant

https://github.com/AbhishekR3/ps-local
1•3Abhishek•12m ago•0 comments

OpenAI Losses Increased Nearly 8X in 2025, with Spending Hitting $34B

https://www.wheresyoured.at/exclusive-openai-financials/
7•spking•13m ago•0 comments

EU Icons for labelling AI-generated content

https://digital-strategy.ec.europa.eu/en/policies/eu-icons-labelling-ai-generated-content
3•giuliomagnifico•18m ago•0 comments

Asia is now buying America and nobody is talking about it

https://asia.nikkei.com/opinion/asia-is-now-buying-america-and-nobody-is-talking-about-it
5•alephnerd•20m ago•1 comments

Half of Bitcoin in circulation is underwater for the first time since 2022

https://sherwood.news/crypto/half-of-the-bitcoin-supply-in-circulation-is-underwater-for-the-firs...
4•gmays•23m ago•0 comments

The Fable 5 Export Controls root of takedown request

https://www.lutasecurity.com/post/the-fable-5-export-controls-harm-us-cyber-defense
1•dawie•26m ago•0 comments

Is CPU design hitting a (soft) speed limit?

2•leecommamichael•33m ago•0 comments

Real-Time NYC rat map

https://ratflow.nyc/
2•UnitedOfTransit•35m ago•1 comments

Optique 1.1.0: Command discovery, value parsers, and ordered grammars

https://github.com/dahlia/optique/discussions/834
1•dahlia•40m ago•0 comments

Phoenix mostly doesn't drink Colorado River water

https://signaldoctrine.substack.com/p/the-allocation
3•SignalDoctrine•42m ago•0 comments

Note on Rio 3.5 Open

https://twitter.com/IplanRio_rj/status/2066693494769348946
1•thimabi•43m ago•0 comments

What one country's experiment says about attempts to boost birth rates

https://www.bbc.co.uk/news/articles/c5yzdr4ygdno
2•mmarian•52m ago•0 comments

I built a notes app powered by the model that powers Apple Intelligence

https://apps.apple.com/us/app/fog-on-device-ai-notes/id6760272134
1•akshatsaladi•58m ago•1 comments

Ask HN: What was the last thing you built on Fable 5

2•ddmma•1h ago•1 comments

In the Matter of OpenAI vs. LangGraph (2025)

https://www.latent.space/p/oai-v-langgraph
1•mooreds•1h ago•0 comments

DOJ Lawyers Argue xAI Is 'Vital' for National Security in NAACP Lawsuit

https://www.wired.com/story/doj-lawyers-argue-xai-vital-national-security-naacp-lawsuit/
2•ilreb•1h ago•0 comments

EU AI: the fables we told ourselves

https://pleias.ai/blog/fable-eu
1•mooreds•1h ago•0 comments

ShopFoundry – Turn Etsy listings into better titles, tags and descriptions

https://www.shopfoundry.app/
1•daisyjin•1h ago•0 comments

Distro Fighter game: Find your Linux distro and desktop

https://distrofighter.com/
3•ashitlerferad•1h ago•0 comments

Age Verification in Monolith OS

https://monolith-project.org/blog/age-verification/
1•rickcarlino•1h ago•1 comments

Safety Ideas, and a Testable Path

1•GrizzlyMedicine•1h ago•0 comments

AI efficiency gains come at a high energy cost

https://www.ft.com/content/7f1c81ac-775b-4f52-a650-7804e4734d5b
1•1vuio0pswjnm7•1h ago•0 comments

Predictive Data Debugging: Reveal and Shape What Models Learn Before You Train

https://www.goodfire.ai/research/predictive-data-debugging
1•gmays•1h ago•0 comments

Frederic Tudor

https://en.wikipedia.org/wiki/Frederic_Tudor
3•thunderbong•1h ago•0 comments

How Many Elementary Particles Are There, Really?

https://www.quantamagazine.org/how-many-elementary-particles-are-there-really-20260615/
1•ProAm•1h ago•0 comments
Open in hackernews

Next-Gen GPU Programming: Hands-On with Mojo and Max Modular HQ

https://www.youtube.com/live/uul6hZ5NXC8?si=mKxZJy2xAD-rOc3g
44•solarmist•1y ago

Comments

solarmist•1y ago
I'm really hoping Modular.ai takes off. GPU programming seems like a nightmare, I'm not surprised they felt the need to build an entire new language to tackle that bog.
mirsadm•1y ago
GPU programming isn't really that bad. I am a bit skeptical this is the way to solve it. The issue is that details do matter when you're writing stuff on the GPU. How much shared memory are you using? How is it scheduled? Is it better to inline or run multiple passes etc. Halide is the closest I think.
solarmist•1y ago
What are you skeptical of? I believe the problem this is solving is a framework that's not CUDA that allows low level access to the hardware, makes it easy to write kernels, and is not Nvidia only. If you watch the video you can write directly in asm if you need to. You have full control if you want it. But it provides primitives and higher level objects that handle common cases.

I'm a novice in the area, but Chris is well respected in this area and cares a lot of about performance.

pjmlp•1y ago
There are already plenty of languages in CUDA world, that is one reasons it is favoured.

The problem isn't the language, rather how to design the data structures and algorithms for GPUs.

solarmist•1y ago
Not sure I fully understand your comment, but I'm pretty sure the talk addresses exactly that.

The primitives and pre-coded kernels provided by CUDA (it solves for the most common scenarios first and foremost) is what's holding things back and in order to get those algorithms and data structures down to the hardware level you need something flexible that can talk directly to the hardware.

pjmlp•1y ago
C, C++, Fortran, Python JIT from NVidia, plus Haskell, .NET, Java, Futuhark, Julia from third parties, and anything else that can bother to create a backend targeting PTX, NVVM IR, or now cuTile.

The pre-coded kernels help a lot, but you don't have to use them necessarly.

melodyogonna•1y ago
Yes, the problem isn't language, it is the entire stack. I think people focus too much on Mojo while ignoring the actual solution Modular has built, which is MAX. The main idea here is that MAX provides a consistent API for both library authors (e.g vLLM, Ollama) to target, as well as for hardware vendors to integrate with - so similar to LLVM.

Basically, imagine if you can target Cuda, but you don't have to do too much for your inference to also work on other GPU Vendors e.g AMD, Intel, Apple. All with performance matching or surpassing what the hardware vendors themselves can come up with.

Mojo comes into the picture because you can program Max with it, create custom kernels that is JIT compiled to the right vendor code at rumtime.

diabllicseagull•1y ago
It is a noble cause. I've spent ten years of my life using CUDA professionally, outside the AI domain mind you. Most of these years, there was a strong desire to break off of CUDA and the associated Nvidia tax on our customers. But one thing we didn't want was to move from depending on CUDA to depending on another intermediary which would also mean financial drain, like the enterprise licensing these folks want to use. Sadly, open source alternatives weren't fostering much confidence, either with their limited feature coverage or just not knowing if they will be supported in the long term (support for new hardware, fixes, etc.).
pjmlp•1y ago
Also while as language nerd I find Mojo cool, given NVidia's going full speed ahead with Python support in CUDA as announced at GTC 2025, to the point of designing a new IR as basis for their JIT, very few researchers will bother with Mojo.

Also what NVIDIA is doing has full Windows support, while Mojo support still isn't there, other than having to make use of WSL.

melodyogonna•1y ago
Why? Will the new Nvidia Python stuff work on AMD GPU and other non-nvidia accelerators?
pjmlp•1y ago
It still remains to be seen how much that will happen to Mojo and MAX, while most researchers are using CUDA anyway, and best of all, it works on their laptops, which cannot be said for AMD GPU and other non-nvidia accelerators.

Naturally assuming they are using laptops with NVidia GPUs.

catapart•1y ago
My mistake completely, but I thought this was going to be something to do with a new scheme or re-thinking of graphics programming APIs, like Metal, Vulkan or OpenGL. Now I'm kind of bummed that it is what it is, because I got really excited for it to be that other thing. =(
pjmlp•1y ago
That is already taking place with work graphs, and making shader languages more C++ like.
ttoinou•1y ago
Seems like with it you will be able to compile and execute one code on multiple GPU targets though
ashvardanian•1y ago
There is a "hush-hush open secret" between minutes 31 and 33 of the video :)
refulgentis•1y ago
TL;Dr same binary runs on Nvidia and ATI today, but not announced yet
throwaway314155•1y ago
They desperately need to disable whatever noise cancellation they're using on the audio. Keeps cutting out, sounds terrible.
solarmist•1y ago
Yeah, the mic quality was terrible.
hogepodge•1y ago
This was the first time we ran an event in the office with this wireless mic setup. We're definitely aware of the problems, and will have them fixed for the next event.
Archit3ch•1y ago
> Other Accelerators (e.g. Apple Silicon GPUs): free for <= 8 devices

From their license.

It's not obvious what happens when you have >8 users, with one GPU each (typical laptop users).

threecheese•1y ago
This is covered by ARM which they consider CPU, and doesn’t fall into that clause. IOW no restrictions.