A global struct is being used inside a parallel region. This may be due to using persistent or global data in functions
Posted: Fri Mar 12, 2021 1:30 pm
A global struct is being used inside a parallel region. This may be due to using persistent or global data in functions called from within a parfor loop. Another reason might be that local variables take space greater than the specified stack size; these are moved to a static area and accessed by a global pointer. In this case consider increasing the stack size, if possible
FE
FE