non-private scalar

What does this code mean. How do I avoid it? I want to parallize this loop.

Loop not parallelized: non-private scalar – …inline

Thanks in advance.

THX 1138

Hi James,

“…inline” is a compiler temp variable used to hold a copy of a local array from an inlined routine. Not much you can do here except not inline the routine.

  • Mat