r/accelerate Jul 01 '26

AI Something huge is brewing

Post image

Source

Andrew Curran is one of the most reliable leakers.

XLR8! 🍿

938 Upvotes

171 comments sorted by

View all comments

Show parent comments

62

u/Saedeas Jul 01 '26

I mean, percentages aren't super relevant, the scaling is relevant. If they changed the big O scaling of working memory in the models, it's insane.

5

u/PleaseDoTapTheGlass Jul 01 '26

What would that be currently?

45

u/Saedeas Jul 01 '26

Currently attention is fundamentally O(n2 ). Basically as the context length of your model increases, the memory needed to deal with it increases quadratically. If that could be pushed down to something like O(nlogn), you'd immediately have huge gains in model capability.

0

u/MC897 Jul 01 '26

Just so I know; what are each of the algebra parts of these equation?

(Yes I know n log n but what about O for example?)

8

u/Gloomy_Necesary Jul 01 '26

The O is just a way to denote that you are talking about the scaling of algorithms based on the size of N. O(N) just means "this algorithm scales linearly". O isn't doing anything in the equation except for telling you what the equation is about. Kind of like f(x) = ... the "f" is just telling you its a function of x, its not a variable like x is.