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

  /src/external/gpl3/gcc.old/dist/libgomp/plugin/
plugin-nvptx.c 1991 int teams = 0, threads = 0; local
2007 teams = val;
2011 nvptx_adjust_launch_bounds (tgt_fn, ptx_dev, &teams, &threads);
2016 void *stacks = nvptx_stacks_acquire (ptx_dev, stack_size, teams * threads);
2025 " [(teams: %u), 1, 1] [(lanes: 32), (threads: %u), 1]\n",
2026 __FUNCTION__, fn_name, teams, threads);
2027 r = CUDA_CALL_NOCHECK (cuLaunchKernel, function, teams, 1, 1,
  /src/external/gpl3/gcc/dist/libgomp/plugin/
plugin-nvptx.c 2224 int teams = 0, threads = 0; local
2240 teams = val;
2244 nvptx_adjust_launch_bounds (tgt_fn, ptx_dev, &teams, &threads);
2259 void *stacks = nvptx_stacks_acquire (ptx_dev, stack_size, teams * threads);
2268 " [(teams: %u), 1, 1] [(lanes: 32), (threads: %u), 1]\n",
2269 __FUNCTION__, fn_name, teams, threads);
2270 r = CUDA_CALL_NOCHECK (cuLaunchKernel, function, teams, 1, 1,
  /src/external/gpl3/gcc/dist/gcc/
gimplify.cc 7984 rtype = "teams";
12212 "%qs construct", "teams");
16419 "%<bind(teams)%> on a %<loop%> region not strictly "
16420 "nested inside of a %<teams%> region");
16769 -2 means that no explicit teams construct was specified
16770 If teams construct is not present at all, use 1 for num_teams
16778 tree teams = walk_tree (&body, find_omp_teams, NULL, NULL);
16787 if (teams == NULL_TREE)
16790 for (c = OMP_TEAMS_CLAUSES (teams); c; c = OMP_CLAUSE_CHAIN (c))
16775 tree teams = walk_tree (&body, find_omp_teams, NULL, NULL); local
  /src/external/gpl3/gcc.old/dist/gcc/
gimplify.cc 7554 rtype = "teams";
9314 "%qs construct", "teams");
13640 "%<bind(teams)%> on a %<loop%> region not strictly "
13641 "nested inside of a %<teams%> region");
13990 If teams construct is not present at all, use 1 for num_teams
13998 tree teams = walk_tree (&body, find_omp_teams, NULL, NULL);
14007 if (teams == NULL_TREE)
14010 for (c = OMP_TEAMS_CLAUSES (teams); c; c = OMP_CLAUSE_CHAIN (c))
13995 tree teams = walk_tree (&body, find_omp_teams, NULL, NULL); local
  /src/external/gpl3/gcc/dist/gcc/cp/
pt.cc 19293 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL);
19294 if (teams)
19295 /* For combined target teams, ensure the num_teams and
19298 for (tree c = OMP_TEAMS_CLAUSES (teams);
19292 tree teams = cp_walk_tree (&stmt, tsubst_find_omp_teams, NULL, NULL); local

Completed in 73 milliseconds