Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

auto parallelization

chljl
Beginner
438 Views
We got a 4-processor xeon workstation running xp. How can I take the advantage of multi-processor system without manually writing the code in parallel form? I tried the auto parallelization option -Qparalell. But it doesn't work. It makes two cpu running without any time reduction.
Thanks a lot.
0 Kudos
1 Reply
Steven_L_Intel1
Employee
438 Views
It could be that your application does not take well to running in parallel. Auto-parallelization can't always tell what is safe to run in parallel. You're better off to use OpenMP directives to let the compiler what can be run in parallel.
0 Kudos
Reply