Java Java and other high level languages for computational science

AI Thread Summary
A discussion on pursuing a career in computational science highlights the importance of understanding programming languages and their performance implications. While Java is favored by some for its ease of use and portability, concerns persist regarding its suitability for high-performance computing (HPC), particularly in fields like physics and astrophysics. Critics argue that Java requires a deep understanding of its runtime to achieve competitive performance, which undermines its managed language advantages. C++ and modern Fortran are often preferred due to their established presence and performance capabilities. The conversation also touches on the relevance of low-level programming knowledge, such as understanding caches and assembly language, which can enhance performance insights. Python emerges as a strong alternative, particularly for its versatility and the ability to integrate performance-critical components written in C/C++. The D programming language is mentioned as a potential solution to some of Java's limitations, offering a design that could better serve computational needs. Overall, a blend of high-level and low-level programming knowledge is deemed beneficial for effective computational science work.
Starbug
Messages
17
Reaction score
0
Hi,

I'm interested in pursuing a career in computational science and numerical computing and so on. I'm looking for some fairly general advice on how to direct my studies. I started learning programming in java, which I very much prefer to program in these days, having had some exposure to Fortran (yuck) and C (yuckety yuck yuck).

You would expect that as compilers and hardware gets better that managed and high-level languages will become more viable for high-performance codes. But my question would be, as it stands now do computational scientists still have to worry about low-level matters. Are programs still targeted at specific hardware, do I need to be learning about caches and assembly code and so on.

Googling about on the question of Java's viability is a bit tricky. Everyone wants to remind you that there are lies, damn lies and benchmarks, you can get buried under language flame wars and a lot of information might be out of date. For example I came across this quite interesting article written by a group called the Java Grande forum:

http://www.research.ibm.com/journal/sj/391/moreira.html

This outlines a number of reasons for Java's unsuitability for HPC. Are these criticisms still relevant?

Another question would be whether people see java having a more prominent role when 'grid computing' starts to take off?

Also, I'd like to know what people think of the D programming language. Info here:

http://www.digitalmars.com/d/overview.html

At first reading I like the design and philosophy very much. And I wonder if it is a better solution to the dilemma the java grande forum people are trying to solve.
 
Technology news on Phys.org
depends on the computational science that you are looking to do...
puremath eg. cryptology
or numerical
or Nbody
or mesh-based

comprehension of cache is important as my supervisor and profs have put it a lot of it is throughput. They mock people who talk about MATLAB or java.

but we use java as a frontend gui. Assembly is usulaly good to know but you really don't need to if you know C/F..thouggh one of my profs say its always good to be able to understand assembly to see if the compiler is optimizing properly.
 
I strongly, strongly, strongly second Python.

- Warren
 
Java doesn't seem to be used much in physics/astrophysics HPC. I suspect Java does not have much to offer that C++ or the newer Fortran flavors don't have already. The thinking may be, with a lot of existing code already written in those languages, why use Java?

Reading the IBM paper you linked to, it sounds like you need to have a detailed understanding of the Java runtime implementation to get performance that's even in the ballpark. That defeats the point of a managed language, doesn't it? Maybe that's changed since the paper was written.

I like Python in the driver's seat, with extension modules for performance critical kernels written in C/C++/Fij.

If you're going to run on machines where performance matters, you should have some notion of the underlying architectures (cache, memory bandwidth, etc). If you're only writing for yourself to run on your own machines, by all means do whatever you like and someone is willing to pay for.

Why not learn a bit of assembler? Not to write much, mostly just to be able to read what the compiler emits (to check performance, but also to check correctness and to access hardware features unsupported in the language). Also, to have a sense of how a computer really works, something missing from high level languages.
 
nmtim said:
Java doesn't seem to be used much in physics/astrophysics HPC. I suspect Java does not have much to offer that C++ or the newer Fortran flavors don't have already. The thinking may be, with a lot of existing code already written in those languages, why use Java?

Reading the IBM paper you linked to, it sounds like you need to have a detailed understanding of the Java runtime implementation to get performance that's even in the ballpark. That defeats the point of a managed language, doesn't it? Maybe that's changed since the paper was written.

I suppose there is some sense reading that paper of it being a slightly artificial attempt to get a language to do something it wasn't designed for. I'm not so sure though. They point out the benefits of Java, i.e that it's simpler for new programmers to learn, that it has a centralised source of portable libraries and documentation, that it revises some of the design kludges in C++ etc. (Java is taught as a first language for physicists at my university I think for just these reasons.) They also seem to argue that many of the tings that crippple java for numerical computing could be fixed without compromising the benefits, although I don't know if this is ever going to happen or whether it has happened. (This was why I was also interested in D, since it has a very java like design, but has things like intrinsic complex numbers, lightweight objects and is natively compiled.)


Thanks for the python links btw. I will look into it.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
What percentage of programmers have learned to touch type? Have you? Do you think it's important, not just for programming, but for more-than-casual computer users generally? ChatGPT didn't have much on it ("Research indicates that less than 20% of people can touch type fluently, with many relying on the hunt-and-peck method for typing ."). 'Hunt-and-peck method' made me smile. It added, "For programmers, touch typing is a valuable skill that can enhance speed, accuracy, and focus. While...
I had a Microsoft Technical interview this past Friday, the question I was asked was this : How do you find the middle value for a dataset that is too big to fit in RAM? I was not able to figure this out during the interview, but I have been look in this all weekend and I read something online that said it can be done at O(N) using something called the counting sort histogram algorithm ( I did not learn that in my advanced data structures and algorithms class). I have watched some youtube...
Back
Top