From: Kaveh Moallemi (kmoallem_at_[hidden]) Date: 2005-06-24 19:16:20
Hi,
Yes, your problem size (N) is very small. A good way to estimate a suitable problem size is:
N = sqrt( TOTAL_MEMORY * 1024 * 1024 / 8 ) * 0.90
were TOTAL_MEMORY = memory/processor * number of processors used (MB)
hope this helps out,
../kaveh