Java and other high level languages for computational science

In summary, Java is still a viable language for HPC, although there are some disadvantages. People may still want to learn assembly if they want to do performance-critical coding. Python is a good alternative for those looking for a high-level language.
  • #1
Starbug
17
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
  • #2
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.
 
  • #4
I strongly, strongly, strongly second Python.

- Warren
 
  • #5
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.
 
  • #6
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.
 

1. What is Java and how is it used in computational science?

Java is a high level programming language that is widely used in computational science. It is an object-oriented language, meaning it focuses on creating objects that have properties and methods. In computational science, Java is often used to develop software and algorithms for data analysis and modeling.

2. What are the advantages of using Java in computational science?

There are several advantages to using Java in computational science. One of the main advantages is its platform independence, meaning it can run on any operating system. Java is also known for its security features, making it a reliable choice for handling sensitive data. Additionally, Java has a large library of built-in functions and tools that are useful for scientific computing.

3. Are there any limitations to using Java in computational science?

While Java has many benefits, it does have some limitations in the field of computational science. One limitation is its slower performance compared to other languages such as C or Fortran. This can be a disadvantage when working with large datasets or complex calculations. Additionally, Java may not be the best choice for certain types of scientific computing, such as high-performance computing or real-time data processing.

4. What other high level languages are commonly used in computational science?

Aside from Java, there are several other high level languages that are commonly used in computational science. These include Python, MATLAB, and R. Each of these languages has its own strengths and weaknesses, and the choice of which one to use often depends on the specific needs of the project.

5. Can Java be used for both scientific and general-purpose programming?

Yes, Java can be used for both scientific and general-purpose programming. Its versatility makes it a popular choice among developers in various fields. In addition to its use in computational science, Java is also commonly used for web development, mobile app development, and enterprise software development.

Similar threads

  • Programming and Computer Science
Replies
11
Views
1K
  • Programming and Computer Science
Replies
15
Views
1K
  • Programming and Computer Science
Replies
14
Views
4K
  • Programming and Computer Science
Replies
15
Views
1K
  • Programming and Computer Science
Replies
21
Views
12K
  • Programming and Computer Science
Replies
5
Views
3K
  • Programming and Computer Science
Replies
33
Views
8K
  • Programming and Computer Science
3
Replies
80
Views
14K
  • Programming and Computer Science
Replies
13
Views
2K
Back
Top