admin管理员组文章数量:1344322
I'm using Open MP with Fortran 08 (compiled with GFortran) to create nested parallel regions (in my case, a 3-level nest). Before running my executable, I set some Linux environment variables to facilitate this nesting structure. In particular, I set OMP_NESTED=True
, OMP_MAX_ACTIVE_LEVELS=3
, OMP_NUM_THREADS=2,7,1
, and OMP_STACKSIZE=4g
.
My issue is that I think OMP_STACKSIZE
sets the stack size of each thread, regardless of which level of the nested parallel region the thread is in. I have set the stack size high, since the first-level threads need a large amount of stack memory. However, the second- and third-level threads do not need nearly this much stack memory. Is there any way to set different stack sizes for different parallel regions? I haven't yet found a method using either Linux environment variables or the OMP libraries within Fortran.
本文标签: Setting the stack size for nested parallel regions with Open MP (Fortran)Stack Overflow
版权声明:本文标题:Setting the stack size for nested parallel regions with Open MP (Fortran) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743752634a2532933.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论