13

AlphaDev uncovered new sorting algorithms that led to improvements in the LLVM libc++ sorting library that were up to 70% faster for shorter sequences and about 1.7% faster for sequences exceeding 250,000 elements.

top 14 comments
sorted by: hot top controversial new old
[-] simple@lemmy.ml 8 points 1 year ago

This is the stuff that makes me really excited for AI. Sure, having a personal assistant is nice. Generating images and music is also very cool. Optimizing software and hardware though, this is where things get amazing.

Modern software is pretty abysmal when you think about it. In the last 20 years we've focused more on making things faster rather than making more optimized things. We ended up with ultra bloated operating systems, regularly 100mb+ apps, RAM sucking programs like web browsers and background apps that make even 8 gigabytes of RAM not enough, and so on.

I'm waiting for a point where AI can start optimizing legacy code and say "Wait, this is really dumb and wastes so much energy". Imagine Windows running on only 100mb of ram. Imagine apps and websites being 10x more efficient than they are now. It's not that crazy of a concept, only a matter of time.

[-] ericjmorey@lemmy.world 3 points 1 year ago

I agree. There's a lot that automation can do that we generally know can be done, but don't because the limited development resources are allocated towards easier payouts.

[-] knighthawk0811@lemmy.one 1 points 1 year ago

to be fair sometimes the bloat is for security. but yeah, I'm with you here

[-] Hexorg@beehaw.org 1 points 1 year ago

Eh security bloat is in the order of kilobytes per megabyte of code.

[-] knighthawk0811@lemmy.one 2 points 1 year ago

so somewhere between 1K and 999K per 1M? got it

[-] Hexorg@beehaw.org 1 points 1 year ago

Still less than the rest of the data for UI

[-] knighthawk0811@lemmy.one 1 points 1 year ago

security devs do tend to focus on performance a lot more than UI UX team does

[-] Hexorg@beehaw.org 2 points 1 year ago

This write up talks about sequences of 3 and 4 items… does their full paper generalize to variable sized lists?

[-] ericjmorey@lemmy.world 3 points 1 year ago* (last edited 1 year ago)

From the main section of the paper published in Nature (which is available for free):

Using AlphaDev, we have discovered fixed and variable sort algorithms from scratch that are both new and more efficient than the state-of-the-art human benchmarks. The fixed sort solutions for sort 3, sort 4 and sort 5 discovered by AlphaDev have been integrated into the standard sort function in the LLVM standard C++ library

It seems they did find improvements for sorting variable sized list but only the sort 3, sort 4 and sort 5 algorithms got implemented in LLVM.

[-] Hexorg@beehaw.org 3 points 1 year ago* (last edited 1 year ago)

Oh I see! I didn’t realize llvm had specific-count implementation

[-] Sibbo@sopuli.xyz 2 points 1 year ago

That is 70% faster on sequences of five elements. Using this for handling the end of the recursion in LLVMs current std::sort implementation results in a 1.7% speedup on sequences exceeding 250k elements.

[-] greysemanticist@lemmy.one 2 points 1 year ago

I wonder if their paper has a plot of the speedups against number of elements. Did they just stop measuring at 250k? What was the shape of the curve?

[-] Sibbo@sopuli.xyz 1 points 1 year ago

I didn't bother reading, not so interested in AI stuff. But since they highlight these results, it likely does not get better for higher numbers.

[-] greysemanticist@lemmy.one 1 points 1 year ago

I'll bet it just ends up being the limitations of memory bandwidth to stuff things into registers for the optimized algorithm. Or, something like Mojo's autotuning finds the best way to partition the work for the hardware.

load more comments
view more: next ›
this post was submitted on 08 Jun 2023
13 points (100.0% liked)

Programming

13269 readers
3 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 1 year ago
MODERATORS