frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini 3.8 Flash and 3.8 Flash Cyber

https://blog.google/innovation-and-ai/models-and-research/gemini-models/3-8-flash-and-3-8-flash-c...
540•bratao•3h ago•330 comments

A Note from LWN

https://lwn.net/Articles/1090585/
614•rwky•5h ago•123 comments

Paint.net 5.2 alpha now runs on Linux

https://forums.paint.net/topic/134562-paintnet-52-alpha-build-9739/
79•judah•1h ago•46 comments

I Don't Have a Smartphone

https://ploum.net/2026-09-02-i_dont_have_a_smartphone.html
86•speckx•1h ago•64 comments

Mistral now trains on user input by default, except on enterprise tier

https://help.mistral.ai/en/articles/455207-can-i-opt-out-of-my-input-or-output-data-being-used-fo...
283•teekert•6h ago•126 comments

Biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
175•randycupertino•5h ago•41 comments

Exit the Cave

https://turtlespace.blog/p/exit-the-cave
129•akkartik•4h ago•29 comments

Three sites made 215,128 “best software” pages for AI. Perplexity cites them

https://trellner.com/reports/manufactured-sources-behind-ai-recommendations/
219•jakobgreenfeld•4h ago•105 comments

SteamdDB Joins Nexus Mods

https://www.nexusmods.com/news/15597
54•HelloUsername•3h ago•24 comments

GrapheneOS says Pixel 11 has MTE support after all

https://grapheneos.social/@GrapheneOS/117194007157499435
155•user_7832•4h ago•104 comments

Aging Brains Blend Memories Together Instead of Just Forgetting Them

https://studyfinds.com/aging-brains-blend-memories-together-instead-of-forgetting-them-study-finds/
123•mdp2021•5h ago•54 comments

Commodore 64 released September 1, 1982

https://dfarq.homeip.net/commodore-64-released-september-1-1982/
281•giuliomagnifico•10h ago•137 comments

A Selection of Los Alamos Rolodex Business Cards

https://clui.org/collections/los-alamos-business-cards/selection-cards
96•1970-01-01•1d ago•20 comments

Poisson Disk Sampling

https://stripeacross.com/posts/poisson-disk-sampling/
89•vismit2000•5h ago•12 comments

Firefox's AI Switch Is Off. Telemetry Isn't

https://marius.blog/firefox-155-ai-kill-switch-retest/
7•speckx•26m ago•0 comments

A third of Perplexity's citations don't contain the number they're cited for

https://hausresearch.com/reports/perplexity-citation-audit/
115•jakobgreenfeld•5h ago•41 comments

WebLLM: high-performance in-browser LLM inference engine

https://github.com/mlc-ai/web-llm
57•saikatsg•4h ago•12 comments

Making the Internet Boring

https://cemrehancavdar.com/2026/08/30/making-the-internet-boring/
18•zdw•2d ago•6 comments

Why do so many tools have JSON config files?

https://textlog.cc/post/895
9•stagas•34m ago•12 comments

Discontinuation of third level domain registrations for the .name TLD [pdf]

https://itp.cdn.icann.org/en/files/consensus-policies/rsep-2026013-name-request-15-04-2026-en.pdf
31•greyface-•1d ago•16 comments

Show HN: FrontierHarness Eval – 9 harness, same model, cost per pass varies 17x

https://frontierharness.org
43•shiqimei•2h ago•19 comments

Tangle – Visual ML Pipeline Editor

https://tangleml.com/
16•duck•2h ago•1 comments

How to debloat your Xiaomi 15 Ultra without root access

https://trackerninja.codeberg.page/post/how-to-debloat-your-xiaomi-15-ultra-without-rooting-and-c...
20•spacedrone808•2h ago•11 comments

Six curl CVEs after OpenAI and Anthropic came back with zero

https://aisle.com/blog/aisle-discovered-six-curl-cves-after-openai-and-anthropic-found-zero
134•goobreee•5h ago•48 comments

The race to engineer new knobs for the human brain

https://www.neuroai.science/p/the-race-to-engineer-new-knobs-for
18•pminimax•2h ago•0 comments

Telli (YC F24) is hiring engineers and designers [Berlin, on-site]

https://careers.telli.com/
1•sebselassie•10h ago

Check if a file was made with Claude

https://claude.com/check-content
113•frexs•6h ago•83 comments

Quasar 438B: Europe's Leading AI Model

https://multiversecomputing.com/resources/introducing-quasar-438b-europe-s-leading-ai-model
147•amunozo•8h ago•97 comments

The Emergent Symbolic Structure of Artificial Neural Networks

https://arxiv.org/abs/2608.29530
261•schmuhblaster•14h ago•89 comments

LLMs: Intelligence vs. Cost

https://openteams.com/intelligence-vs-cost/
58•theanonymousone•5h ago•25 comments
Open in hackernews

Faster sorting with SIMD CUDA intrinsics (2024)

https://winwang.blog/posts/bitonic-sort/
92•winwang•1y ago
Code at https://github.com/wiwa/blog-code/

Comments

ashvardanian•1y ago
The article covers extremely important CUDA warp-level synchronization/exchange primitives, but it's not what is generally called SIMD in the CUDA land .

Most "CUDA SIMD" intrinsics are designed to process a 32-bit data pack containing 2x 16-bit or 4x 8-bit values (<https://docs.nvidia.com/cuda/cuda-math-api/cuda_math_api/gro...>). That significantly shrinks their applicability in most domains outside of video and string processing. I've had pretty high hopes for DPX on Hopper (<https://developer.nvidia.com/blog/boosting-dynamic-programmi...>) instructions and started integrating them in StringZilla last year, but the gains aren't huge.

winwang•1y ago
Oh wow, TIL, thanks. I usually call stuff like that SWAR, and every now-and-then I try to think of a way to (fruitfully) use it. The "SIMD" in this case was just an allusion to warp-wide functions looking like how one might use SIMD in CPU code, as opposed to typical SIMT CUDA.

Also, StringZilla looks amazing -- I just became your 1000th Github follower :)

ashvardanian•1y ago
Thanks, appreciate the gesture :)

Traditional SWAR on GPUs is a fascinating topic. I've begun assembling a set of synthetic benchmarks to compare DP4A vs. DPX (<https://github.com/ashvardanian/less_slow.cpp/pull/35>), but it feels incomplete without SWAR. My working hypothesis is that 64-bit SWAR on properly aligned data could be very useful in GPGPU, though FMA/MIN/MAX operations in that PR might not be the clearest showcase of its strengths. Do you have a better example or use case in mind?

winwang•1y ago
I don't -- unfortunately not too well-versed in this field! But I was a bit fascinated with SWAR after I randomly thought of how to prefix-sum with int multiplication, later finding out that it is indeed an old trick as I suspected (I'm definitely not on this thread btw): https://mastodon.social/@dougall/109913251096277108

As for 64-bit... well, I mostly avoid using high-end GPUs, but I was of the impression that i64 is just simulated. In fact, I was thinking of using the full warp as a "pipeline" to implement u32 division (mostly as a joke), almost like anti-SWAR. There was some old-ish paper detailing arithmetic latencies in GPUs and division was approximately more than 32x multiplication (...or I could be misremembering).

bobmcnamara•1y ago
Parallel compares: https://graphics.stanford.edu/~seander/bithacks.html#ZeroInW...
DennisL123•1y ago
Interesting stuff. Not sure if I read this right that it‘s 16 und 32 bit values of integers that get sorted. If yes, I‘d love to see if the GPU implementation can beat a competitive Radix sort implementation on a CPU.
winwang•1y ago
It's 32 32-bit values which get sorted. I don't think a GPU sort would beat a CPU sort at this scale, even if you don't take kernel launch time into account. CPUs are simply too fast for (super-)small data, especially with AVX-512. But if we're talking about a larger amount of data, that would be a different story, i.e. as part of a normal gpu mergesort.
maeln•1y ago
It is also useful if your data already lives on the GPU memory. For example, when you need to z-sort a bunch of particles in a 3d renderer particle system.
exDM69•1y ago
A 32 way GPU sorting algorithm might be just what I need for sorting and deduplicating triangle id's in a visibility buffer renderer I am working on.

Thanks for sharing.

winwang•1y ago
As someone who doesn't know very much about graphics (ironically), you're welcome and hope it helps!
fourseventy•1y ago
What are the biggest use cases of GPU accelerated sorting?