Lines Matching refs:threads_per_go
61 threads_per_go = ncores_per_socket >> 1; in computeVarsForN()
64 if (threads_per_go > 4) { in computeVarsForN()
66 threads_per_go = threads_per_go >> 1; in computeVarsForN()
68 if (threads_per_go > 4 && nsockets == 1) in computeVarsForN()
69 threads_per_go = threads_per_go >> 1; in computeVarsForN()
72 if (threads_per_go == 0) in computeVarsForN()
73 threads_per_go = 1; in computeVarsForN()
75 num_gos = n / threads_per_go; in computeVarsForN()
76 if (n % threads_per_go) in computeVarsForN()
90 threads_per_group = threads_per_go * gos_per_group; in computeVarsForN()
92 num_gos = n / threads_per_go; in computeVarsForN()
93 if (n % threads_per_go) in computeVarsForN()
105 threads_per_group = threads_per_go * gos_per_group; in computeVarsForN()
114 threads_per_go = n / num_gos; in computeGo()
116 threads_per_go++; in computeGo()
118 threads_per_go++; in computeGo()
119 num_gos = n / threads_per_go; in computeGo()
120 if (n % threads_per_go) in computeGo()
445 my_go_index = tid / b->threads_per_go; in __kmp_dist_barrier_release()