a6d22fb21c
2021-01-16 Kwok Cheung Yeung <kcy@codesourcery.com> gcc/ * builtin-types.def (BT_FN_VOID_OMPFN_PTR_OMPCPYFN_LONG_LONG_BOOL_UINT_PTR_INT): Rename to... (BT_FN_VOID_OMPFN_PTR_OMPCPYFN_LONG_LONG_BOOL_UINT_PTR_INT_PTR): ...this. Add extra argument. * gimplify.c (omp_default_clause): Ensure that event handle is firstprivate in a task region. (gimplify_scan_omp_clauses): Handle OMP_CLAUSE_DETACH. (gimplify_adjust_omp_clauses): Likewise. * omp-builtins.def (BUILT_IN_GOMP_TASK): Change function type to BT_FN_VOID_OMPFN_PTR_OMPCPYFN_LONG_LONG_BOOL_UINT_PTR_INT_PTR. * omp-expand.c (expand_task_call): Add GOMP_TASK_FLAG_DETACH to flags if detach clause specified. Add detach argument when generating call to GOMP_task. * omp-low.c (scan_sharing_clauses): Setup data environment for detach clause. (finish_taskreg_scan): Move field for variable containing the event handle to the front of the struct. * tree-core.h (enum omp_clause_code): Add OMP_CLAUSE_DETACH. Fix ordering. * tree-nested.c (convert_nonlocal_omp_clauses): Handle OMP_CLAUSE_DETACH clause. (convert_local_omp_clauses): Handle OMP_CLAUSE_DETACH clause. * tree-pretty-print.c (dump_omp_clause): Handle OMP_CLAUSE_DETACH. * tree.c (omp_clause_num_ops): Add entry for OMP_CLAUSE_DETACH. Fix ordering. (omp_clause_code_name): Add entry for OMP_CLAUSE_DETACH. Fix ordering. (walk_tree_1): Handle OMP_CLAUSE_DETACH. gcc/c-family/ * c-pragma.h (pragma_omp_clause): Add PRAGMA_OMP_CLAUSE_DETACH. Redefine PRAGMA_OACC_CLAUSE_DETACH. gcc/c/ * c-parser.c (c_parser_omp_clause_detach): New. (c_parser_omp_all_clauses): Handle PRAGMA_OMP_CLAUSE_DETACH clause. (OMP_TASK_CLAUSE_MASK): Add mask for PRAGMA_OMP_CLAUSE_DETACH. * c-typeck.c (c_finish_omp_clauses): Handle PRAGMA_OMP_CLAUSE_DETACH clause. Prevent use of detach with mergeable and overriding the data sharing mode of the event handle. gcc/cp/ * parser.c (cp_parser_omp_clause_detach): New. (cp_parser_omp_all_clauses): Handle PRAGMA_OMP_CLAUSE_DETACH. (OMP_TASK_CLAUSE_MASK): Add mask for PRAGMA_OMP_CLAUSE_DETACH. * pt.c (tsubst_omp_clauses): Handle OMP_CLAUSE_DETACH clause. * semantics.c (finish_omp_clauses): Handle OMP_CLAUSE_DETACH clause. Prevent use of detach with mergeable and overriding the data sharing mode of the event handle. gcc/fortran/ * dump-parse-tree.c (show_omp_clauses): Handle detach clause. * frontend-passes.c (gfc_code_walker): Walk detach expression. * gfortran.h (struct gfc_omp_clauses): Add detach field. (gfc_c_intptr_kind): New. * openmp.c (gfc_free_omp_clauses): Free detach clause. (gfc_match_omp_detach): New. (enum omp_mask1): Add OMP_CLAUSE_DETACH. (enum omp_mask2): Remove OMP_CLAUSE_DETACH. (gfc_match_omp_clauses): Handle OMP_CLAUSE_DETACH for OpenMP. (OMP_TASK_CLAUSES): Add OMP_CLAUSE_DETACH. (resolve_omp_clauses): Prevent use of detach with mergeable and overriding the data sharing mode of the event handle. * trans-openmp.c (gfc_trans_omp_clauses): Handle detach clause. * trans-types.c (gfc_c_intptr_kind): New. (gfc_init_kinds): Initialize gfc_c_intptr_kind. * types.def (BT_FN_VOID_OMPFN_PTR_OMPCPYFN_LONG_LONG_BOOL_UINT_PTR_INT): Rename to... (BT_FN_VOID_OMPFN_PTR_OMPCPYFN_LONG_LONG_BOOL_UINT_PTR_INT_PTR): ...this. Add extra argument. gcc/testsuite/ * c-c++-common/gomp/task-detach-1.c: New. * g++.dg/gomp/task-detach-1.C: New. * gcc.dg/gomp/task-detach-1.c: New. * gfortran.dg/gomp/task-detach-1.f90: New. include/ * gomp-constants.h (GOMP_TASK_FLAG_DETACH): New. libgomp/ * fortran.c (omp_fulfill_event_): New. * libgomp.h (struct gomp_task): Add detach and completion_sem fields. (struct gomp_team): Add task_detach_queue and task_detach_count fields. * libgomp.map (OMP_5.0.1): Add omp_fulfill_event and omp_fulfill_event_. * libgomp_g.h (GOMP_task): Add extra argument. * omp.h.in (enum omp_event_handle_t): New. (omp_fulfill_event): New. * omp_lib.f90.in (omp_event_handle_kind): New. (omp_fulfill_event): New. * omp_lib.h.in (omp_event_handle_kind): New. (omp_fulfill_event): Declare. * priority_queue.c (priority_tree_find): New. (priority_list_find): New. (priority_queue_find): New. * priority_queue.h (priority_queue_predicate): New. (priority_queue_find): New. * task.c (gomp_init_task): Initialize detach field. (task_fulfilled_p): New. (GOMP_task): Add detach argument. Ignore detach argument if GOMP_TASK_FLAG_DETACH not set in flags. Initialize completion_sem field. Copy address of completion_sem into detach argument and into the start of the data record. Wait for detach event if task not deferred. (gomp_barrier_handle_tasks): Queue tasks with unfulfilled events. Remove completed tasks and requeue dependent tasks. (omp_fulfill_event): New. * team.c (gomp_new_team): Initialize task_detach_queue and task_detach_count fields. (free_team): Free task_detach_queue field. * testsuite/libgomp.c-c++-common/task-detach-1.c: New testcase. * testsuite/libgomp.c-c++-common/task-detach-2.c: New testcase. * testsuite/libgomp.c-c++-common/task-detach-3.c: New testcase. * testsuite/libgomp.c-c++-common/task-detach-4.c: New testcase. * testsuite/libgomp.c-c++-common/task-detach-5.c: New testcase. * testsuite/libgomp.c-c++-common/task-detach-6.c: New testcase. * testsuite/libgomp.fortran/task-detach-1.f90: New testcase. * testsuite/libgomp.fortran/task-detach-2.f90: New testcase. * testsuite/libgomp.fortran/task-detach-3.f90: New testcase. * testsuite/libgomp.fortran/task-detach-4.f90: New testcase. * testsuite/libgomp.fortran/task-detach-5.f90: New testcase. * testsuite/libgomp.fortran/task-detach-6.f90: New testcase.
739 lines
16 KiB
C
739 lines
16 KiB
C
/* Copyright (C) 2005-2021 Free Software Foundation, Inc.
|
|
Contributed by Jakub Jelinek <jakub@redhat.com>.
|
|
|
|
This file is part of the GNU Offloading and Multi Processing Library
|
|
(libgomp).
|
|
|
|
Libgomp is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
any later version.
|
|
|
|
Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
more details.
|
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
/* This file contains Fortran wrapper routines. */
|
|
|
|
#include "libgomp.h"
|
|
#include "libgomp_f.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
|
|
#ifdef HAVE_ATTRIBUTE_ALIAS
|
|
/* Use internal aliases if possible. */
|
|
# ifndef LIBGOMP_GNU_SYMBOL_VERSIONING
|
|
ialias_redirect (omp_init_lock)
|
|
ialias_redirect (omp_init_nest_lock)
|
|
ialias_redirect (omp_destroy_lock)
|
|
ialias_redirect (omp_destroy_nest_lock)
|
|
ialias_redirect (omp_set_lock)
|
|
ialias_redirect (omp_set_nest_lock)
|
|
ialias_redirect (omp_unset_lock)
|
|
ialias_redirect (omp_unset_nest_lock)
|
|
ialias_redirect (omp_test_lock)
|
|
ialias_redirect (omp_test_nest_lock)
|
|
# endif
|
|
ialias_redirect (omp_set_dynamic)
|
|
ialias_redirect (omp_get_dynamic)
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
ialias_redirect (omp_set_nested)
|
|
ialias_redirect (omp_get_nested)
|
|
#pragma GCC diagnostic pop
|
|
ialias_redirect (omp_set_num_threads)
|
|
ialias_redirect (omp_in_parallel)
|
|
ialias_redirect (omp_get_max_threads)
|
|
ialias_redirect (omp_get_num_procs)
|
|
ialias_redirect (omp_get_num_threads)
|
|
ialias_redirect (omp_get_thread_num)
|
|
ialias_redirect (omp_get_wtick)
|
|
ialias_redirect (omp_get_wtime)
|
|
ialias_redirect (omp_set_schedule)
|
|
ialias_redirect (omp_get_schedule)
|
|
ialias_redirect (omp_get_thread_limit)
|
|
ialias_redirect (omp_set_max_active_levels)
|
|
ialias_redirect (omp_get_max_active_levels)
|
|
ialias_redirect (omp_get_supported_active_levels)
|
|
ialias_redirect (omp_get_level)
|
|
ialias_redirect (omp_get_ancestor_thread_num)
|
|
ialias_redirect (omp_get_team_size)
|
|
ialias_redirect (omp_get_active_level)
|
|
ialias_redirect (omp_in_final)
|
|
ialias_redirect (omp_get_cancellation)
|
|
ialias_redirect (omp_get_proc_bind)
|
|
ialias_redirect (omp_get_num_places)
|
|
ialias_redirect (omp_get_place_num_procs)
|
|
ialias_redirect (omp_get_place_proc_ids)
|
|
ialias_redirect (omp_get_place_num)
|
|
ialias_redirect (omp_get_partition_num_places)
|
|
ialias_redirect (omp_get_partition_place_nums)
|
|
ialias_redirect (omp_set_default_device)
|
|
ialias_redirect (omp_get_default_device)
|
|
ialias_redirect (omp_get_num_devices)
|
|
ialias_redirect (omp_get_num_teams)
|
|
ialias_redirect (omp_get_team_num)
|
|
ialias_redirect (omp_is_initial_device)
|
|
ialias_redirect (omp_get_initial_device)
|
|
ialias_redirect (omp_get_max_task_priority)
|
|
ialias_redirect (omp_pause_resource)
|
|
ialias_redirect (omp_pause_resource_all)
|
|
ialias_redirect (omp_init_allocator)
|
|
ialias_redirect (omp_destroy_allocator)
|
|
ialias_redirect (omp_set_default_allocator)
|
|
ialias_redirect (omp_get_default_allocator)
|
|
#endif
|
|
|
|
#ifndef LIBGOMP_GNU_SYMBOL_VERSIONING
|
|
# define gomp_init_lock__30 omp_init_lock_
|
|
# define gomp_destroy_lock__30 omp_destroy_lock_
|
|
# define gomp_set_lock__30 omp_set_lock_
|
|
# define gomp_unset_lock__30 omp_unset_lock_
|
|
# define gomp_test_lock__30 omp_test_lock_
|
|
# define gomp_init_nest_lock__30 omp_init_nest_lock_
|
|
# define gomp_destroy_nest_lock__30 omp_destroy_nest_lock_
|
|
# define gomp_set_nest_lock__30 omp_set_nest_lock_
|
|
# define gomp_unset_nest_lock__30 omp_unset_nest_lock_
|
|
# define gomp_test_nest_lock__30 omp_test_nest_lock_
|
|
#endif
|
|
|
|
void
|
|
gomp_init_lock__30 (omp_lock_arg_t lock)
|
|
{
|
|
#ifndef OMP_LOCK_DIRECT
|
|
omp_lock_arg (lock) = malloc (sizeof (omp_lock_t));
|
|
#endif
|
|
gomp_init_lock_30 (omp_lock_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_init_nest_lock__30 (omp_nest_lock_arg_t lock)
|
|
{
|
|
#ifndef OMP_NEST_LOCK_DIRECT
|
|
omp_nest_lock_arg (lock) = malloc (sizeof (omp_nest_lock_t));
|
|
#endif
|
|
gomp_init_nest_lock_30 (omp_nest_lock_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_destroy_lock__30 (omp_lock_arg_t lock)
|
|
{
|
|
gomp_destroy_lock_30 (omp_lock_arg (lock));
|
|
#ifndef OMP_LOCK_DIRECT
|
|
free (omp_lock_arg (lock));
|
|
omp_lock_arg (lock) = NULL;
|
|
#endif
|
|
}
|
|
|
|
void
|
|
gomp_destroy_nest_lock__30 (omp_nest_lock_arg_t lock)
|
|
{
|
|
gomp_destroy_nest_lock_30 (omp_nest_lock_arg (lock));
|
|
#ifndef OMP_NEST_LOCK_DIRECT
|
|
free (omp_nest_lock_arg (lock));
|
|
omp_nest_lock_arg (lock) = NULL;
|
|
#endif
|
|
}
|
|
|
|
void
|
|
gomp_set_lock__30 (omp_lock_arg_t lock)
|
|
{
|
|
gomp_set_lock_30 (omp_lock_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_set_nest_lock__30 (omp_nest_lock_arg_t lock)
|
|
{
|
|
gomp_set_nest_lock_30 (omp_nest_lock_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_unset_lock__30 (omp_lock_arg_t lock)
|
|
{
|
|
gomp_unset_lock_30 (omp_lock_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_unset_nest_lock__30 (omp_nest_lock_arg_t lock)
|
|
{
|
|
gomp_unset_nest_lock_30 (omp_nest_lock_arg (lock));
|
|
}
|
|
|
|
int32_t
|
|
gomp_test_lock__30 (omp_lock_arg_t lock)
|
|
{
|
|
return gomp_test_lock_30 (omp_lock_arg (lock));
|
|
}
|
|
|
|
int32_t
|
|
gomp_test_nest_lock__30 (omp_nest_lock_arg_t lock)
|
|
{
|
|
return gomp_test_nest_lock_30 (omp_nest_lock_arg (lock));
|
|
}
|
|
|
|
#ifdef LIBGOMP_GNU_SYMBOL_VERSIONING
|
|
void
|
|
gomp_init_lock__25 (omp_lock_25_arg_t lock)
|
|
{
|
|
#ifndef OMP_LOCK_25_DIRECT
|
|
omp_lock_25_arg (lock) = malloc (sizeof (omp_lock_25_t));
|
|
#endif
|
|
gomp_init_lock_25 (omp_lock_25_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_init_nest_lock__25 (omp_nest_lock_25_arg_t lock)
|
|
{
|
|
#ifndef OMP_NEST_LOCK_25_DIRECT
|
|
omp_nest_lock_25_arg (lock) = malloc (sizeof (omp_nest_lock_25_t));
|
|
#endif
|
|
gomp_init_nest_lock_25 (omp_nest_lock_25_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_destroy_lock__25 (omp_lock_25_arg_t lock)
|
|
{
|
|
gomp_destroy_lock_25 (omp_lock_25_arg (lock));
|
|
#ifndef OMP_LOCK_25_DIRECT
|
|
free (omp_lock_25_arg (lock));
|
|
omp_lock_25_arg (lock) = NULL;
|
|
#endif
|
|
}
|
|
|
|
void
|
|
gomp_destroy_nest_lock__25 (omp_nest_lock_25_arg_t lock)
|
|
{
|
|
gomp_destroy_nest_lock_25 (omp_nest_lock_25_arg (lock));
|
|
#ifndef OMP_NEST_LOCK_25_DIRECT
|
|
free (omp_nest_lock_25_arg (lock));
|
|
omp_nest_lock_25_arg (lock) = NULL;
|
|
#endif
|
|
}
|
|
|
|
void
|
|
gomp_set_lock__25 (omp_lock_25_arg_t lock)
|
|
{
|
|
gomp_set_lock_25 (omp_lock_25_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_set_nest_lock__25 (omp_nest_lock_25_arg_t lock)
|
|
{
|
|
gomp_set_nest_lock_25 (omp_nest_lock_25_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_unset_lock__25 (omp_lock_25_arg_t lock)
|
|
{
|
|
gomp_unset_lock_25 (omp_lock_25_arg (lock));
|
|
}
|
|
|
|
void
|
|
gomp_unset_nest_lock__25 (omp_nest_lock_25_arg_t lock)
|
|
{
|
|
gomp_unset_nest_lock_25 (omp_nest_lock_25_arg (lock));
|
|
}
|
|
|
|
int32_t
|
|
gomp_test_lock__25 (omp_lock_25_arg_t lock)
|
|
{
|
|
return gomp_test_lock_25 (omp_lock_25_arg (lock));
|
|
}
|
|
|
|
int32_t
|
|
gomp_test_nest_lock__25 (omp_nest_lock_25_arg_t lock)
|
|
{
|
|
return gomp_test_nest_lock_25 (omp_nest_lock_25_arg (lock));
|
|
}
|
|
|
|
omp_lock_symver (omp_init_lock_)
|
|
omp_lock_symver (omp_destroy_lock_)
|
|
omp_lock_symver (omp_set_lock_)
|
|
omp_lock_symver (omp_unset_lock_)
|
|
omp_lock_symver (omp_test_lock_)
|
|
omp_lock_symver (omp_init_nest_lock_)
|
|
omp_lock_symver (omp_destroy_nest_lock_)
|
|
omp_lock_symver (omp_set_nest_lock_)
|
|
omp_lock_symver (omp_unset_nest_lock_)
|
|
omp_lock_symver (omp_test_nest_lock_)
|
|
#endif
|
|
|
|
#define TO_INT(x) ((x) > INT_MIN ? (x) < INT_MAX ? (x) : INT_MAX : INT_MIN)
|
|
|
|
void
|
|
omp_set_dynamic_ (const int32_t *set)
|
|
{
|
|
omp_set_dynamic (*set);
|
|
}
|
|
|
|
void
|
|
omp_set_dynamic_8_ (const int64_t *set)
|
|
{
|
|
omp_set_dynamic (!!*set);
|
|
}
|
|
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
void
|
|
omp_set_nested_ (const int32_t *set)
|
|
{
|
|
omp_set_nested (*set);
|
|
}
|
|
|
|
void
|
|
omp_set_nested_8_ (const int64_t *set)
|
|
{
|
|
omp_set_nested (!!*set);
|
|
}
|
|
#pragma GCC diagnostic pop
|
|
|
|
void
|
|
omp_set_num_threads_ (const int32_t *set)
|
|
{
|
|
omp_set_num_threads (*set);
|
|
}
|
|
|
|
void
|
|
omp_set_num_threads_8_ (const int64_t *set)
|
|
{
|
|
omp_set_num_threads (TO_INT (*set));
|
|
}
|
|
|
|
int32_t
|
|
omp_get_dynamic_ (void)
|
|
{
|
|
return omp_get_dynamic ();
|
|
}
|
|
|
|
#pragma GCC diagnostic push
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
int32_t
|
|
omp_get_nested_ (void)
|
|
{
|
|
return omp_get_nested ();
|
|
}
|
|
#pragma GCC diagnostic pop
|
|
|
|
int32_t
|
|
omp_in_parallel_ (void)
|
|
{
|
|
return omp_in_parallel ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_max_threads_ (void)
|
|
{
|
|
return omp_get_max_threads ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_num_procs_ (void)
|
|
{
|
|
return omp_get_num_procs ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_num_threads_ (void)
|
|
{
|
|
return omp_get_num_threads ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_thread_num_ (void)
|
|
{
|
|
return omp_get_thread_num ();
|
|
}
|
|
|
|
double
|
|
omp_get_wtick_ (void)
|
|
{
|
|
return omp_get_wtick ();
|
|
}
|
|
|
|
double
|
|
omp_get_wtime_ (void)
|
|
{
|
|
return omp_get_wtime ();
|
|
}
|
|
|
|
void
|
|
omp_set_schedule_ (const int32_t *kind, const int32_t *chunk_size)
|
|
{
|
|
omp_set_schedule (*kind, *chunk_size);
|
|
}
|
|
|
|
void
|
|
omp_set_schedule_8_ (const int32_t *kind, const int64_t *chunk_size)
|
|
{
|
|
omp_set_schedule (*kind, TO_INT (*chunk_size));
|
|
}
|
|
|
|
void
|
|
omp_get_schedule_ (int32_t *kind, int32_t *chunk_size)
|
|
{
|
|
omp_sched_t k;
|
|
int cs;
|
|
omp_get_schedule (&k, &cs);
|
|
/* For now mask off GFS_MONOTONIC, because OpenMP 4.5 code will not
|
|
expect to see it. */
|
|
*kind = k & ~GFS_MONOTONIC;
|
|
*chunk_size = cs;
|
|
}
|
|
|
|
void
|
|
omp_get_schedule_8_ (int32_t *kind, int64_t *chunk_size)
|
|
{
|
|
omp_sched_t k;
|
|
int cs;
|
|
omp_get_schedule (&k, &cs);
|
|
/* See above. */
|
|
*kind = k & ~GFS_MONOTONIC;
|
|
*chunk_size = cs;
|
|
}
|
|
|
|
int32_t
|
|
omp_get_thread_limit_ (void)
|
|
{
|
|
return omp_get_thread_limit ();
|
|
}
|
|
|
|
void
|
|
omp_set_max_active_levels_ (const int32_t *levels)
|
|
{
|
|
omp_set_max_active_levels (*levels);
|
|
}
|
|
|
|
void
|
|
omp_set_max_active_levels_8_ (const int64_t *levels)
|
|
{
|
|
omp_set_max_active_levels (TO_INT (*levels));
|
|
}
|
|
|
|
int32_t
|
|
omp_get_max_active_levels_ (void)
|
|
{
|
|
return omp_get_max_active_levels ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_supported_active_levels_ (void)
|
|
{
|
|
return omp_get_supported_active_levels ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_level_ (void)
|
|
{
|
|
return omp_get_level ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_ancestor_thread_num_ (const int32_t *level)
|
|
{
|
|
return omp_get_ancestor_thread_num (*level);
|
|
}
|
|
|
|
int32_t
|
|
omp_get_ancestor_thread_num_8_ (const int64_t *level)
|
|
{
|
|
return omp_get_ancestor_thread_num (TO_INT (*level));
|
|
}
|
|
|
|
int32_t
|
|
omp_get_team_size_ (const int32_t *level)
|
|
{
|
|
return omp_get_team_size (*level);
|
|
}
|
|
|
|
int32_t
|
|
omp_get_team_size_8_ (const int64_t *level)
|
|
{
|
|
return omp_get_team_size (TO_INT (*level));
|
|
}
|
|
|
|
int32_t
|
|
omp_get_active_level_ (void)
|
|
{
|
|
return omp_get_active_level ();
|
|
}
|
|
|
|
int32_t
|
|
omp_in_final_ (void)
|
|
{
|
|
return omp_in_final ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_cancellation_ (void)
|
|
{
|
|
return omp_get_cancellation ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_proc_bind_ (void)
|
|
{
|
|
return omp_get_proc_bind ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_num_places_ (void)
|
|
{
|
|
return omp_get_num_places ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_place_num_procs_ (const int32_t *place_num)
|
|
{
|
|
return omp_get_place_num_procs (*place_num);
|
|
}
|
|
|
|
int32_t
|
|
omp_get_place_num_procs_8_ (const int64_t *place_num)
|
|
{
|
|
return omp_get_place_num_procs (TO_INT (*place_num));
|
|
}
|
|
|
|
void
|
|
omp_get_place_proc_ids_ (const int32_t *place_num, int32_t *ids)
|
|
{
|
|
omp_get_place_proc_ids (*place_num, (int *) ids);
|
|
}
|
|
|
|
void
|
|
omp_get_place_proc_ids_8_ (const int64_t *place_num, int64_t *ids)
|
|
{
|
|
gomp_get_place_proc_ids_8 (TO_INT (*place_num), ids);
|
|
}
|
|
|
|
int32_t
|
|
omp_get_place_num_ (void)
|
|
{
|
|
return omp_get_place_num ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_partition_num_places_ (void)
|
|
{
|
|
return omp_get_partition_num_places ();
|
|
}
|
|
|
|
void
|
|
omp_get_partition_place_nums_ (int32_t *place_nums)
|
|
{
|
|
omp_get_partition_place_nums ((int *) place_nums);
|
|
}
|
|
|
|
void
|
|
omp_get_partition_place_nums_8_ (int64_t *place_nums)
|
|
{
|
|
if (gomp_places_list == NULL)
|
|
return;
|
|
|
|
struct gomp_thread *thr = gomp_thread ();
|
|
if (thr->place == 0)
|
|
gomp_init_affinity ();
|
|
|
|
unsigned int i;
|
|
for (i = 0; i < thr->ts.place_partition_len; i++)
|
|
*place_nums++ = (int64_t) thr->ts.place_partition_off + i;
|
|
}
|
|
|
|
void
|
|
omp_set_default_device_ (const int32_t *device_num)
|
|
{
|
|
return omp_set_default_device (*device_num);
|
|
}
|
|
|
|
void
|
|
omp_set_default_device_8_ (const int64_t *device_num)
|
|
{
|
|
return omp_set_default_device (TO_INT (*device_num));
|
|
}
|
|
|
|
int32_t
|
|
omp_get_default_device_ (void)
|
|
{
|
|
return omp_get_default_device ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_num_devices_ (void)
|
|
{
|
|
return omp_get_num_devices ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_num_teams_ (void)
|
|
{
|
|
return omp_get_num_teams ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_team_num_ (void)
|
|
{
|
|
return omp_get_team_num ();
|
|
}
|
|
|
|
int32_t
|
|
omp_is_initial_device_ (void)
|
|
{
|
|
return omp_is_initial_device ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_initial_device_ (void)
|
|
{
|
|
return omp_get_initial_device ();
|
|
}
|
|
|
|
int32_t
|
|
omp_get_max_task_priority_ (void)
|
|
{
|
|
return omp_get_max_task_priority ();
|
|
}
|
|
|
|
void
|
|
omp_fulfill_event_ (intptr_t event)
|
|
{
|
|
omp_fulfill_event ((omp_event_handle_t) event);
|
|
}
|
|
|
|
void
|
|
omp_set_affinity_format_ (const char *format, size_t format_len)
|
|
{
|
|
gomp_set_affinity_format (format, format_len);
|
|
}
|
|
|
|
int32_t
|
|
omp_get_affinity_format_ (char *buffer, size_t buffer_len)
|
|
{
|
|
size_t len = strlen (gomp_affinity_format_var);
|
|
if (buffer_len)
|
|
{
|
|
if (len < buffer_len)
|
|
{
|
|
memcpy (buffer, gomp_affinity_format_var, len);
|
|
memset (buffer + len, ' ', buffer_len - len);
|
|
}
|
|
else
|
|
memcpy (buffer, gomp_affinity_format_var, buffer_len);
|
|
}
|
|
return len;
|
|
}
|
|
|
|
void
|
|
omp_display_affinity_ (const char *format, size_t format_len)
|
|
{
|
|
char *fmt = NULL, fmt_buf[256];
|
|
char buf[512];
|
|
if (format_len)
|
|
{
|
|
fmt = format_len < 256 ? fmt_buf : gomp_malloc (format_len + 1);
|
|
memcpy (fmt, format, format_len);
|
|
fmt[format_len] = '\0';
|
|
}
|
|
struct gomp_thread *thr = gomp_thread ();
|
|
size_t ret
|
|
= gomp_display_affinity (buf, sizeof buf,
|
|
format_len ? fmt : gomp_affinity_format_var,
|
|
gomp_thread_self (), &thr->ts, thr->place);
|
|
if (ret < sizeof buf)
|
|
{
|
|
buf[ret] = '\n';
|
|
gomp_print_string (buf, ret + 1);
|
|
}
|
|
else
|
|
{
|
|
char *b = gomp_malloc (ret + 1);
|
|
gomp_display_affinity (buf, sizeof buf,
|
|
format_len ? fmt : gomp_affinity_format_var,
|
|
gomp_thread_self (), &thr->ts, thr->place);
|
|
b[ret] = '\n';
|
|
gomp_print_string (b, ret + 1);
|
|
free (b);
|
|
}
|
|
if (fmt && fmt != fmt_buf)
|
|
free (fmt);
|
|
}
|
|
|
|
int32_t
|
|
omp_capture_affinity_ (char *buffer, const char *format,
|
|
size_t buffer_len, size_t format_len)
|
|
{
|
|
char *fmt = NULL, fmt_buf[256];
|
|
if (format_len)
|
|
{
|
|
fmt = format_len < 256 ? fmt_buf : gomp_malloc (format_len + 1);
|
|
memcpy (fmt, format, format_len);
|
|
fmt[format_len] = '\0';
|
|
}
|
|
struct gomp_thread *thr = gomp_thread ();
|
|
size_t ret
|
|
= gomp_display_affinity (buffer, buffer_len,
|
|
format_len ? fmt : gomp_affinity_format_var,
|
|
gomp_thread_self (), &thr->ts, thr->place);
|
|
if (fmt && fmt != fmt_buf)
|
|
free (fmt);
|
|
if (ret < buffer_len)
|
|
memset (buffer + ret, ' ', buffer_len - ret);
|
|
return ret;
|
|
}
|
|
|
|
int32_t
|
|
omp_pause_resource_ (const int32_t *kind, const int32_t *device_num)
|
|
{
|
|
return omp_pause_resource (*kind, *device_num);
|
|
}
|
|
|
|
int32_t
|
|
omp_pause_resource_all_ (const int32_t *kind)
|
|
{
|
|
return omp_pause_resource_all (*kind);
|
|
}
|
|
|
|
intptr_t
|
|
omp_init_allocator_ (const intptr_t *memspace, const int32_t *ntraits,
|
|
const omp_alloctrait_t *traits)
|
|
{
|
|
return (intptr_t) omp_init_allocator ((omp_memspace_handle_t) *memspace,
|
|
(int) *ntraits, traits);
|
|
}
|
|
|
|
intptr_t
|
|
omp_init_allocator_8_ (const intptr_t *memspace, const int64_t *ntraits,
|
|
const omp_alloctrait_t *traits)
|
|
{
|
|
return (intptr_t) omp_init_allocator ((omp_memspace_handle_t) *memspace,
|
|
(int) *ntraits, traits);
|
|
}
|
|
|
|
void
|
|
omp_destroy_allocator_ (const intptr_t *allocator)
|
|
{
|
|
omp_destroy_allocator ((omp_allocator_handle_t) *allocator);
|
|
}
|
|
|
|
void
|
|
omp_set_default_allocator_ (const intptr_t *allocator)
|
|
{
|
|
omp_set_default_allocator ((omp_allocator_handle_t) *allocator);
|
|
}
|
|
|
|
intptr_t
|
|
omp_get_default_allocator_ ()
|
|
{
|
|
return (intptr_t) omp_get_default_allocator ();
|
|
}
|