HomeSort by: relevance | last modified time | path
    Searched defs:numthreads (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/libgomp/config/gcn/
team.c 50 int numthreads = __builtin_gcn_dim_size (1); local
56 gomp_global_icv.thread_limit_var = numthreads;
74 * numthreads);
81 pool->threads = team_malloc (sizeof (void *) * numthreads);
82 for (int tid = 0; tid < numthreads; tid++)
84 pool->threads_size = numthreads;
85 pool->threads_used = numthreads;
88 gomp_simple_barrier_init (&pool->threads_dock, numthreads);
  /src/external/gpl3/gcc/dist/libgomp/config/gcn/
team.c 57 int numthreads = __builtin_gcn_dim_size (1); local
67 gomp_global_icv.thread_limit_var = numthreads;
93 * numthreads);
100 pool->threads = team_malloc (sizeof (void *) * numthreads);
101 for (int tid = 0; tid < numthreads; tid++)
103 pool->threads_size = numthreads;
104 pool->threads_used = numthreads;
107 gomp_simple_barrier_init (&pool->threads_dock, numthreads);

Completed in 22 milliseconds