vote up 1 vote down star

I want to practice programming code for future hardware. What are these? The two main things that come to mind is 64bits and multicore. I also note that cache is important along and GPU have their own tech but right now i am not interested in any graphics programming.

What else should i know about?

-edit- i know a lot of these are in the present but pretty soon all cpus will be multicore and threading will be more important. I consider endians (big vs little) but found that not to be important and already have a big endian CPU to test on.

flag

38% accept rate
what language? assembler multi-thread? or PHP? it makes a big difference – KM May 29 at 20:20
6  
How is that future hardware? I have it today. If you want future hardware, build algorithms that execute on a DNA molecule in massively parallel wet chemistry structures. That's the future. – S.Lott May 29 at 20:22
2  
I want to practice eating a future lunch... – Shog9 May 29 at 20:26
2  
seems everyone is stuck on the word "future". maybe you should edit your post to say emerging technologies. – Jeremy May 29 at 20:30
How far into the future are we talking? – musicfreak May 29 at 20:31

7 Answers

vote up 2 vote down

64 bits and multicore are the present not the future.

About the future: Quantum computing or something like that?

link|flag
How do you program for something that doesn't really exist yet? – TheTXI May 29 at 20:20
You can at least have a look at the theory, for example en.wikipedia.org/wiki/BQP – schnaader May 29 at 20:26
There are simulators of quantum computers. Its possible to start learning they principles, so in the future you could be able to code assemblers for that. – Victor May 29 at 20:27
vote up 0 vote down

Of course this question is hard to answer because nobody knows what future hardware will look like (at least in long terms), but multi-threading/parallel programming are important and will be definitely even more important for some years.

I'd also suggest working with GPU computing like CUDA/Stream, but this could be a problem because it's very likely that this will change a lot the next years.

link|flag
vote up 6 vote down

If you'd like to dive into a "mainstream" OS that has full 64 bit support, I suggest you start coding against the beta of Mac OS X "Snow Leopard" (codename for 10.6). One of the big enhancements is Grand Central, which is a "facility" for developers to code for multicore systems. Grand Central should distribute workload not only between core, but also to the GPU.

Also very important is the explosion of smart devices such as the iPhone, Android, etc. I strongly believe that some upcoming so-called "netbooks" will rely on OS such as Android and iPhone OS, and as such knowing how to code against their SDK, and knowing how to optimize code for mobile devices is very important (e.g. optimizing performance graphic or otherwise, battery usage).

link|flag
vote up 3 vote down

My recommendation for future :)

Or you can focusing on ray tracing.

link|flag
+1 for CUDA. Definitely worth looking at. 100+ processor cores beats 4. :) – musicfreak May 29 at 20:36
vote up 1 vote down

I agree with Oli's answere (+1) and would add that in addition to 64-bit environments, you look at multi-core environments. The industry is getting pretty close to the end of the cycle of improvements in raw speed. But we're seeing more and more multi-core CPUs. So parallel or concurrent programming -- which is rilly rilly hard -- is quickly becoming very much in demand.

How can you prepare for this and practice it? I've been asking myself the same same question. So for, it seems to me like functional languages such as ML, Haskell, LISP, Arc, Scheme, etc. are a good place to begin, since truly functional languages are generally free of side effects and therefore very "parallelizable". Erlang is another interesting language.

Other interesting developments that I've found include

link|flag
vote up 2 vote down

How about learning OpenCL? It's a massively parallel processing language based on C. It's similar to nVidia's CUDA but is vendor agnostic. There are no major implementations yet, but expect to see some pretty soon.

As for 64 bit, don't really worry about. Programming will not really be any different unless you're doing really low level stuff (kernels). Higher level frameworks such as Java and .NET allow you to run code on 32 bit and 64 bit machines. Even C/C++ allows you to do this (but not quite so transparently).

link|flag
vote up 3 vote down

I can't foretell the future, but one aspect to look into is something like the CELL processor used in the PS3, where instead of many identical general purpose cores, there is only one (although capable of symmetric multithreading) plus many cores that are more specific purpose.

In a simple analysis, the Cell processor can be split into four components: external input and output structures, the main processor called the Power Processing Element (PPE) (a two-way simultaneous multithreaded Power ISA v.2.03 compliant core), eight fully-functional co-processors called the Synergistic Processing Elements, or SPEs, and a specialized high-bandwidth circular data bus connecting the PPE, input/output elements and the SPEs, called the Element Interconnect Bus or EIB.

CUDA and OpenCL are similar in that you separate your general purpose code and high performance computations into separate parts that may run on different hardware and language/api.

link|flag

Your Answer

Get an OpenID
or

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