vote up 1 vote down star

I have became interested in C-like languages for performance computing. Can you recommend some alternative programming languages which have the following attributes:

  • must be close to the hardware (bit fiddling, pointers or some alternative safe method like references)
  • no managed code (no jvm/.net languages)
  • has to be really fast (like C)

Also I am mainly interested in little-known languages.

update: more constraints

  • must be above ASM level (and yes I am interested in macro languages on top of ASM)
  • can be obscure, not very widespread
flag

Is there a reason for not using C? – Thomas Mar 17 at 13:31
More constraints please? This question leads to a laundry list. – dsimcha Mar 17 at 13:32
I bet my C# program can beat your ASM code. – Skizz Mar 17 at 15:43

11 Answers

vote up 9 vote down check

How about Assembly language, or the D programming language?

link|flag
Yeah, I love assembly but I am actually searching for above-asm languages – Richard J. Terrell Mar 17 at 13:32
check out "D" it might be just what you are after. – Andrew Hare Mar 17 at 13:32
Looks great, thanks! – Richard J. Terrell Mar 17 at 13:50
vote up 1 vote down

You could start programming FPGAs in VHDL, Verilog, System C ...

link|flag
vote up 1 vote down

OpenCL might be interesting. It's sort of like OpenGL shader language (a subset of C with extensions), but for general purpose parallel array computing.

link|flag
vote up 1 vote down

Forth!

Forth can be faster than machine language on some architectures. The compiled code is extremely dense, therefore, making optimal use of code caching.

link|flag
is the dense object code a feature of Forth, or a feature of a particular Forth compiler? – slim Mar 17 at 14:06
"faster than machine language on some architectures" - eh, how's that possible? – Skizz Mar 17 at 15:42
What he means is that some Forth compilers generate machine code that is often better than your average developers' assembly will be. – thenduks Mar 17 at 15:47
You could say that about any language. – Skizz Mar 17 at 16:00
It's a property of some Forth-systems (in Forth there is no compiler/interpreter as commonly known. Some Forths simply interpret a list of subroutine addresses. This list is shorter than the corresponding subroutines calls in assembly, hence the advantage. A complete Forth can take as little as 2KB. – Karel Thönissen Mar 23 at 15:20
vote up 0 vote down

Ada was originally designed for embedded systems (among other things).

link|flag
vote up 0 vote down

Seems a bit awkward to answer my question, but I have found two languages:

  • Pyrex
  • Vala

They may not fulfill all of the constraints, but they are great for performance computing and both translates to C.

link|flag
Both of those are tools for creating C which communicates with a simple object model - CPython and GObject respectively. Neither has, AFIAK, anything to do with high performance computing. – Pete Kirkham Mar 17 at 13:50
No? check out pyrex at the bottom of this page: scipy.org/PerformancePython – Richard J. Terrell Mar 17 at 13:53
That shows that someone tried using Pyrex to generate C, which was found to run nearly as fast as C by itself. NumPy on the other hand is actively used in HPC applications, as are Python wrappers for Intel HPC libraries. – Pete Kirkham Mar 17 at 14:07
Still, Pyrex (and Vala) run nearly as fast as C, thus they are good candidates for writing high-performance software. – Richard J. Terrell Mar 21 at 13:59
vote up 0 vote down

You can't get much closer than assembly language, unless you get a job with a chip-maker and start writing micro code!!!

If you're on Windows I think you can get hold of Microsoft MASM (macro assembler) that will allow you go get up and running quickly. I used it a long time ago and it's not a bad product.

link|flag
have you read the question? it is not about getting as close as possible. and "must be above ASM level" – Richard J. Terrell Mar 17 at 13:41
VASM is also an option sun.hasenbraten.de/vasm :) – Rob Sanders Mar 17 at 13:45
Thanks Sanders, looks great! – Richard J. Terrell Mar 17 at 13:46
@gdivos: Yes I read the question. There was no mention of "must be ASM level" when I posted (he's added an update). Try and stay calm! – Sean Mar 17 at 13:50
@Sean: it was just a comment, didn't wanted to offend you. and yeah i am totally calm :) – Richard J. Terrell Mar 17 at 14:09
vote up 5 vote down

Well, I've always preferred C and/or C++ because there are multiple flavours (MSVC, glibc etc), it runs on many different platforms (e.g. mobile devices, Windows, linux) and devices, and it can be written cross platform (different processor architectures) and even for high end graphics (e.g. DirectX).

You get "decent" access to platform resources (conditions vary), it can be as fast as you choose to hone it, and it's a tad easier (IMHO) to write than ASM. There's also a pretty decent range of support tools and code analysis tools to make things a little easier.

Also C and C++ have been around for quite some time, so it's got (even today) an excellent and enthusiastic community!

link|flag
No intention to abandon the great C/C++ world. Just to explore ways and possibilities around the same level. So, a language unable to call C/C++ code is useless. – Richard J. Terrell Mar 17 at 13:37
vote up 4 vote down

You don't explicitly state that it can't be C in your question, so I'll go ahead and recommend C. It fulfills your three bulleted desires, and you won't have to worry about different versions of the language (like each different kind of assembler).

link|flag
After the updated question, I felt the need to delete this...but I'll just leave it up. It seems Rob Sanders and myself are in agreement. – Kyle Walsh Mar 17 at 13:37
vote up 10 vote down

If you don't know about it and are interested just in broadening your horizons, take a look at Forth. Reading about Forth always makes me feel C is high-level.

link|flag
vote up 2 vote down

assembly would be the closest to the hardware and therefore the fastest

link|flag
Closest to hardware != fastest. In fact, you actually have more room to worsen performance than you do in a "farther from the hardware" language like Java (for a number of reasons). Mainly because you spend more time dealing with lower level things than you can on actual algorithms. – Jason Baker Mar 17 at 13:41

Your Answer

Get an OpenID
or

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