up vote 31 down vote favorite
5
share [g+] share [fb]

Continuing along current trends we can expect our algorithms to run many times faster on Desktop Computers in 10 years (let's pick a number) 1024x faster.

Do you know of any algorithms that are within 1024 times of running on average Desktop Systems and that would dramatically change the kinds of software we can write there?

I have my thoughts, but I'm more interested in the community's ideas.

link|improve this question
show 5 more comments
feedback

closed as not constructive by Nifle, Paŭlo Ebermann, hammar, Justin, Graviton Oct 26 '11 at 14:08

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

42 Answers

1 2

We'll just eat up those advances with more layers of indirection, as we've done in the past.

link|improve this answer
1  
Isn't the literal sense of what you're saying: "The speed of the computer doesn't affect the software it runs" That just seems wrong to me. Maybe true, but still wrong. – Allain Lalonde Feb 6 '09 at 1:32
1  
But my layer is so much better than the last one!!! – JaredPar Feb 6 '09 at 5:11
4  
If you really feel this way, why don't use use an Apple ][e with the software of its era? – Jay Bazuzi Feb 7 '09 at 1:29
show 5 more comments
feedback

Visual Studio C++ Intellisense will finally work.

link|improve this answer
2  
Jay Bazuzi, who will be writing C++ in 10 years? Are you kidding? – BobbyShaftoe Feb 6 '09 at 5:30
4  
If computers were 1024 times faster, we would lose the need to write in C++ "for extra performance." – yfeldblum Feb 27 '09 at 12:41
5  
There are applications that can use any amount of processing power. They will continue to be written in C++ or Quorf or whatever we're using by then. – David Thornley Mar 4 '09 at 18:06
1  
+1 for Quorf. I anxiously await the day I can call myself a Quorf programmer. – Moose May 6 '09 at 13:08
show 9 more comments
feedback

Raytracing for games is certainly within three orders of magnitude of feasibility.

link|improve this answer
1  
@Jay: much more realistic looking environments. Water and glass, as well as mirroring objects like metal will look much more realistic, especially being rendered in real-time. – dreamlax Feb 6 '09 at 2:11
1  
@MadKeithV, the original answer would have been stronger if it said something more like "raytracing and optics modeling." You can get very impressive images with a combination of multisampled raytracing + radiosity. – Bob Cross Sep 3 '09 at 23:58
show 4 more comments
feedback

Maybe the past can help tell us what the future will bring...

I did some back of the envelope math with numbers I found on the net (not sure how reliable the sources are, but I think it will support my argument)....

My first PC was a 486 33sx. On the wikipedia I found that a 486 33sx performed 27 mips.

My current PC is an i7 940. The best source I could find on i7 was for the 965... 76,383 mips

76,383/27 = 2829, so well over 2x the figure stated in the question (1024).

On my 486 I: Used Windows, played games, tinkered with development (I sucked back then, but I was young), and used AOL (this was the early 90s).

On my i7 I: Use Windows, play games, tinker with development (I suck a little less now), and browse the web.

I predict that in 10 years I will: Use Windows, play games, tinker with development (but be pretty good this time), and browse the web (from my flying car, which will be invented by 2015 according to Back to the Future II)

link|improve this answer
4  
The flying car has been invented; in fact, there are at least a dozen different models to choose from at the moment. They are, however, far from mass-produced, and even further from street legal. – Jens Roland Feb 6 '09 at 4:22
show 1 more comment
feedback

The notion of Garbage Collection will be extended to non-memory resources, such as open files and database connections.

As programmers we'll use software that will analyze our code for bugs in ways we only do as humans today. Think what lint / compiler warnings / PreFAST do, but 1024x as much analysis.

As you type your code, you will get immediate feedback about not just compile errors, but also test results: you'll know immediately which unit tests you've broken.

link|improve this answer
16  
So you're saying that the stupid paperclip is going to get a hell of a lot smarter? ..."It looks like you're writing a ransom note... need some help? You should curse more." -- Demetri Martin – gnovice Feb 6 '09 at 2:24
1  
I do NOT want real-time bug warnings as I type my code. When I'm ready to compile and see what compile errors I have, I'll compile and see what errors I have. – Brian Postow Feb 10 '09 at 22:41
1  
@Brian: Apparently you are not using IntelliJ IDEA or a similar IDE, which shows the errors and warnings in an unintrusive way while editing. – Esko Luontola Mar 3 '09 at 14:27
2  
No, Neo. I'm trying to tell you that when you're ready, you won't have to type. – FreshCode May 3 '10 at 18:08
show 3 more comments
feedback

I don't know for sure but I am pretty sure salesmen wouldnt have trouble traveling anymore :)

link|improve this answer
4  
You mean not if there were ~10 more cities (math?) – Overflown Feb 6 '09 at 1:04
9  
But.. (as xkcd has taught us) since eBay, the traveling salesman is O(1) – Jens Roland Feb 6 '09 at 1:49
1  
+1 for CompSci humor. We won't have any more problems with the Halting Problem either. – new123456 Apr 3 '11 at 18:35
show 4 more comments
feedback

According to past experience: 1024 slower and larger versions of what we do now.

Ten years ago, my desktop machine did almost exactly what my current machine does. The big difference is that it now connects to way more computers (network applications) and more smaller devices (mostly iPod and cameras). Also, games have more polygons. I don't see why that will change anytime soon.

link|improve this answer
show 3 more comments
feedback

Actually, I was asked a few years back to help [large semiconductor company] answer this exact question - what are the ('consumer') uses for what they termed 'terabit/terahertz computing'. Sadly, I don't have my notes with me right now, but if I recall correctly, some of the conclusions were:

  • Visual pattern recognition
  • Real-time raytracing
  • Data mining
  • Practical real-time video encoding/decoding
  • Lightning-fast 3D Solitaire (for Windows 360UltimateAwesomenessSponsoredByTonyHawk)
link|improve this answer
feedback

There are some hard tasks in the area of machine learning and artificial intelligence that will benefit from faster computers, for example:

  • machine translation
  • speech recognition
  • image processing, object recognition

To illustrate: Speech recognizers have a language model built in. For all words that the acoustic model hypothesizes it decides how likely they would actually be, given a number of previous words that have already been hypothesized. This search space of previous words becomes very big, and usually the language model will just look at the hypotheses for the previous two words, so it deals with trigrams. Otherwise search would take too long. But if speed (and hopefully, memory) won't be an issue it can take much more information into account (i.e. use 6-grams, for example, or models that are better than simple Markov Chains altogether), and make more accurate predictions about what was spoken into the microphone.

link|improve this answer
show 3 more comments
feedback

Wirth's law:

Software is getting slower more rapidly than hardware becomes faster.

Probably we can also throw in some Murphy's laws... and the future does not look bright anymore ;)

It will be much easier to write poor software with acceptable performance, but writing something that could really exploit the speed increase, multiple cores and other not-yet-known technologies will be kind of a rocket science.

link|improve this answer
show 1 more comment
feedback

Ray Kurzweil has something to say about that in his book The Age of Intelligent Machines.

Freely available here along with pretty much everything else the dude's written. http://www.kurzweilai.net/meme/frame.html?m=10

link|improve this answer
feedback

More layers of DRM

link|improve this answer
1  
Funny that no one thought of this :) – Allain Lalonde Feb 11 '09 at 0:39
feedback

Software that was a whole lot less efficient, yet still faster.

(Or is that just me?)

link|improve this answer
show 3 more comments
feedback

Software will grow to consume its newfound resources. I, on the other hand will still be trying to resist feature creep and write the smallest, lightest application I can.

I'm pretty sure we'll see a lot more poorly written software by amateurs with the latest point and click RAD tool; simply because computers are so fast that the difference between efficient well written and inefficient software is undetectable. At the moment the difference is a matter of a second or two in response time for most things.

link|improve this answer
feedback

We'll be able to get that much closer to modeling every neuron in an entire human brain. See you soon, SkyNet!

link|improve this answer
1  
My answer was going to be "still no closer to simulating the human brain". I'll look forward to seeing who is right! – Craig McQueen May 6 '09 at 13:22
feedback

First one quibble 1024 orders of magnitude would be 10^1024x faster, not 1024x.

Clearly certain of graphics processing (games!) would benefit. Also video and audio processing software would do well.

Factoring - and consequently hacking public/private keys would be quite a bit faster and the typical key size would be moving up commensurately.

A lot of applications/systems won't be bound by CPU (and aren't now) - disk and network IO will continue to be the throttle.

link|improve this answer
show 1 more comment
feedback

The SETI project will eventually find an extra-terrestrial intelligence.

link|improve this answer
1  
They have to be transmitting, we have to understand it, and it has to show up under fourier spectographic analysis. If these conditions aren't met, the number of packets we process is immaterial. – tsilb Feb 10 '09 at 1:04
3  
Maybe the SETI project will finally find intelligence on earth? ;-) – MadKeithV Feb 27 '09 at 12:44
show 2 more comments
feedback

In writing real-time video automation software for the broadcast industry, the speed of the platform is a huge consideration. In fact we deliberately develop on under-spec'd machines so that our software will over-perform when deployed to end-consumers.

There is only so much that you can reasonably do in 1/25th of a second in the PAL world (or 1/30th for NTSC, or 1/50th for HD, etc). So this imposes a considerable limitation on implementing our creative ideas and moving the industry ahead.

The move from hardware to software-based CODECs has been the most significant advance for us in recent years and I can see this as a major factor as platforms get faster. Real-time rendering offers almost limitless possibilities for broadcasters, especially in the HD domain. But it is quite a way off being a reality.

The question is directed at 'Desktop Computers' and you may think that I am referring to Server technology, however it is much of the same when it comes to development.

To answer the question: Mashing large amounts of meta-data with media streams in real-time. That’s the holy grail for us and x1024 would certainly help. Just can’t wait 10 years for it.

Read "The Singularity is Near" by Ray Kurtzweil if you want a really in-depth answer to the question.

link|improve this answer
feedback

Weather forecasting will include trillions of more data-points, but it will still rain on what was supposed to be a sunny day.

link|improve this answer
feedback

Microsoft SharePoint will become usable soon after that time.

link|improve this answer
show 1 more comment
feedback

The C++ compiler would compile my whole project in a split second!

link|improve this answer
show 1 more comment
feedback

Faster processing power is just that.

Give us more processing power, we'll write slower software :) An example : When I'm programming in Visual Studio and I type a dot ('.'), sometimes it takes up to 2 seconds for my computer to respond because it's looking for an auto-complete item in a big map. 2 Seconds on a current PC would mean 5 months on a 1978 computer. In that 2 seconds used for autocompletion someone else calculated an entire trajectory for the Apollo mission about 40 years ago ! :-D

Our bottleneck is (by now, taking a dual- or quad-core as 'normal' desktop) most of the times somewhere else. For example our processing power gives us the opportunity to calculate lots of stuff, but most of the time we need a lot of input/output data - so we're limited by ram/rom.

If I look at my (pretty average) desktop right now for example, it's a Q6600 at 4x 2.4Ghz. Pretty damn fast for someone who started on a ZX Spectrum :) But the best way to improve my systems speed right now is/was getting faster IO. I could buy a new CPU that would give me a 4 (cores) x 800Mhz speed bump, but I probably would hardly notice it with the current software.

Installing a striped raid hd-combo on the other hand improved the (perceived) speed of my machine a lot. If I'd be downloading at 8MB/sec, normally I'd notice my machine would be sluggish since it would spend a lot of time on IO on that single HD. Now it's divided by 2, which improves responsiveness a lot.

To cut my long story short, processing power is just one aspect - I'd rather see fast SSD's being introduced for the masses in the next year :)

link|improve this answer
1  
Can't help but wonder if software systems would need to be torn down to be rebuilt in this way. And if we'll only see it used in specialized fields until a breakthrough OS gets developed. – Allain Lalonde May 21 '09 at 13:09
feedback

Virtualization will become absolutely commonplace for various purposes:

  • To emulate old hardware/OS environments
  • To reduce deployment problems: apps could be delivered as VM instances rather than installation packages
  • For security purposes: have each browser tab/window run in its own VM
link|improve this answer
feedback

Something that would use a BOINC-like project even more effectively, i.e. calculate and fight AIDS, cancer or solve other scientific problems.

link|improve this answer
1  
I work on a scientific project that requires lots of computing power. It will certainly help. But breakthroughs happen because of thinking power, not computing power. – Jon Ericson Feb 6 '09 at 1:29
feedback

We'll be solving NP-complete problems in a life time.

link|improve this answer
show 4 more comments
feedback

I'm sorry to disagree, but this is infeasible any time soon.

However, we will probably have 1024x more cores and we should really think of ways to make good threaded programs that don't context switch too much and/or fight over data in memory.

link|improve this answer
show 2 more comments
feedback

With current trends in programming, "optimize costs versus code quantity cost", we would have 1024 times slower code but 1024 times more functionality!

link|improve this answer
feedback

JAVA will finally be fast

link|improve this answer
6  
Oh, hold on a little. Let's not get ahead of ourselves :-) – ldigas May 21 '09 at 1:19
show 1 more comment
feedback

Better OCR would mean that office software could become gigantic self-organizing searchable indexes of scanned documents. Imagine scanning something that looked like a speadsheet and then having it behave like one.

UML diagrams that get generated by examining a digital photograph of a whiteboard.

How 'bout ... the fabled "WinFS" that does away with a hierarchy of directories in favor of a self-organizing cloud of all of your documents/entities.

link|improve this answer
2  
I also think that these things could be done with current processing power. Which raises another interesting question. If processing power hit a brick wall today, how much better could the software get on current hardware? My guess: Much, much, much better. – PeterAllenWebb May 6 '09 at 13:36
show 3 more comments
feedback

That depends a lot on your definition of "faster"

We've reached somewhat of a limit on cpu speed due to things such as the speed of light

We will start to see more many way processors which are executing many independent pipelines of execution simultaneously. Only programs designed to benefit from this new way of thinking about architecture will be able to fully benefit from the "faster" machines of the future.

Just my two cents..

link|improve this answer
show 4 more comments
feedback
1 2

Not the answer you're looking for? Browse other questions tagged or ask your own question.