0

I run my code in supercomputer by used terminal.

I have 2 kind of code: 1- sequential and parallel (shared memory)

the sequential one it run correctly, but when I run the SM I have this error when I enter th command javac :

mycode.java:7: cannot access edu.rit.pj.Comm file has wrong version 49.0, should be 48.0 Please remove or make sure it appears in the correct subdirectory of the classpath. import edu.rit.pj.Comm;

the library for parallel is: parallel java.

1 Answers1

1

You trying to access a Java 5 library with a Java 4 compiler. This cannot work.

I wonder if you really need to use these old Java versions.

J Fabian Meier
  • 33,516
  • 10
  • 64
  • 142