Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here I would focus on custom application where I got degradation (no need for general discussion about fastness of threads against processes).

I've got MPI application on Java which solve some problem using iteration method. The schematic view to application bellow lets call it MyProcess(n), where "n" is the number of processes:

double[] myArray = new double[M*K];

for(int iter = 0;iter<iterationCount;++iter)
{
   //some communication between processes

   //main loop
   for(M) 
     for(K)
     {
        //linear sequence of arithmetical instructions
     }

   //some communication between processes
}

To improve performance I've decided to use Java threads (lets call it MyThreads(n)). The code is almost the same – myArray becomes matrix, where each row contains array for appropriate thread.

double[][] myArray = new double[threadNumber][M*K];


public void run()
{
  for(int iter = 0;iter<iterationCount;++iter)
  {
     //some synchronization primitives

     //main loop
     for(M) 
       for(K)
       {
          //linear sequence of arithmetical instructions

          counter++;
       }

     // some synchronization primitives
  }
}

Threads created and started using Executors.newFixedThreadPool(threadNumber).

The problem is that while for MyProcess(n) we got adequate performance(n in [1,8]), in case of MyThreads(n) performance degrades essentially(on my system by factor of n).

Hardware: Intel(R) Xeon(R) CPU X5355(2 processors, 4 cores on each)

Java version: 1.5(using d32 option).

At first I thought that got different workloads on threads, but no, variable “counter” shows, that number of iterations between different run of MyThreads(n) (n in [1,8]) are identical.

And it isn’t synchronization fault, because I have temporary comment all synchronization primitives.

Any suggestions/ideas would be appreciated.

Thanks.

share|improve this question
I am not clear what you are saying. I would expect 4 - 16 threads to be the optimal number of threads for you system. Depending on what you are doing. Which potions of code run independently/concurrent in different threads, and which portions are serialized? – Peter Lawrey Aug 1 '11 at 14:34
Thanks for answer. Well, after commenting synchronization primitives remaining code is independant for all threads. It means at this moment each thread just compute its results and no communication. It will bring incorrect result matrix, but for debugging reasons dont care. – manuk Aug 1 '11 at 14:52
Can you post some example value of M,K and iterationCount? – user802421 Aug 1 '11 at 15:00
1  
Hardware: Intel(R) Xeon(R) CPU X5355(2 processors, 4 cores on each) that's like Peter told 16 logical cores. But do you have N different matrices, hence each core solves its own one? If so you can expect linear scaling by adding CPUs till you hit the memory bandwidth. if you attempt solving one matrix w/ all the cores available then it's totally different. – bestsss Aug 1 '11 at 15:30
1  
You can check with jvisualvm to see if the threads are indeed running simultaneously and not waiting for something. – biziclop Aug 1 '11 at 15:52
show 6 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.