omp_lib.h 15.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
!===-- module/omp_lib.h ------------------------------------------*- F90 -*-===!
!
! Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
! See https://llvm.org/LICENSE.txt for license information.
! SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
!
!===------------------------------------------------------------------------===!

!dir$ free

  integer, parameter :: omp_integer_kind = selected_int_kind(9) ! 32-bit int
  integer, parameter :: omp_logical_kind = kind(.true.)

  integer, parameter :: omp_sched_kind = omp_integer_kind
  integer, parameter :: omp_proc_bind_kind = omp_integer_kind
  integer, parameter :: omp_pause_resource_kind = omp_integer_kind
  integer, parameter :: omp_sync_hint_kind = omp_integer_kind
  integer, parameter :: omp_lock_hint_kind = omp_sync_hint_kind
  integer, parameter :: omp_event_handle_kind = omp_integer_kind
  integer, parameter :: omp_alloctrait_key_kind = omp_integer_kind
  integer, parameter :: omp_alloctrait_val_kind = omp_integer_kind
  integer, parameter :: omp_allocator_handle_kind = omp_integer_kind
  integer, parameter :: omp_memspace_handle_kind = omp_integer_kind
  integer, parameter :: omp_lock_kind = int_ptr_kind()
  integer, parameter :: omp_nest_lock_kind = int_ptr_kind()
  integer, parameter :: omp_depend_kind = omp_integer_kind

  integer(kind=omp_sched_kind), parameter :: &
    omp_sched_static = 1, &
    omp_sched_dynamic = 2, &
    omp_sched_guided = 3, &
    omp_sched_auto = 4

  integer(kind=omp_proc_bind_kind), parameter :: &
    omp_proc_bind_false = 0, &
    omp_proc_bind_true = 1, &
    omp_proc_bind_master = 2, &
    omp_proc_bind_close = 3, &
    omp_proc_bind_spread = 4

  integer(kind=omp_pause_resource_kind), parameter :: &
    omp_pause_soft = 1, &
    omp_pause_hard = 2

  integer(kind=omp_sync_hint_kind), parameter :: &
    omp_sync_hint_none = 0, &
    omp_sync_hint_uncontended = 1, &
    omp_sync_hint_contended = 2, &
    omp_sync_hint_nonspeculative = 4, &
    omp_sync_hint_speculative = 8
  integer(kind=omp_lock_hint_kind), parameter :: &
    omp_lock_hint_none = omp_sync_hint_none, &
    omp_lock_hint_uncontended = omp_sync_hint_uncontended, &
    omp_lock_hint_contended = omp_sync_hint_contended, &
    omp_lock_hint_nonspeculative = omp_sync_hint_nonspeculative, &
    omp_lock_hint_speculative = omp_sync_hint_speculative

  integer(kind=omp_event_handle_kind), parameter :: &
    omp_allow_completion_event = 0, &
    omp_task_fulfill_event = 1

  integer(kind=omp_alloctrait_key_kind), parameter :: &
    omp_atk_sync_hint = 1, &
    omp_atk_alignment = 2, &
    omp_atk_access = 3, &
    omp_atk_pool_size = 4, &
    omp_atk_fallback = 5, &
    omp_atk_fb_data = 6, &
    omp_atk_pinned = 7, &
    omp_atk_partition = 8

  integer(kind=omp_alloctrait_val_kind), parameter :: &
    omp_atv_false = 0, &
    omp_atv_true = 1, &
    omp_atv_default = 2, &
    omp_atv_contended = 3, &
    omp_atv_uncontended = 4, &
    omp_atv_sequential = 5, &
    omp_atv_private = 6, &
    omp_atv_all = 7, &
    omp_atv_thread = 8, &
    omp_atv_pteam = 9, &
    omp_atv_cgroup = 10, &
    omp_atv_default_mem_fb = 11, &
    omp_atv_null_fb = 12, &
    omp_atv_abort_fb = 13, &
    omp_atv_allocator_fb = 14, &
    omp_atv_environment = 15, &
    omp_atv_nearest = 16, &
    omp_atv_blocked = 17, &
    omp_atv_interleaved = 18

  type :: omp_alloctrait
    integer(kind=omp_alloctrait_key_kind) :: key, value
  end type omp_alloctrait

  integer(kind=omp_allocator_handle_kind), parameter :: omp_null_allocator = 0

  integer(kind=omp_memspace_handle_kind), parameter :: &
    omp_default_mem_space = 0, &
    omp_large_cap_mem_space = 0, &
    omp_const_mem_space = 0, &
    omp_high_bw_mem_space = 0, &
    omp_low_lat_mem_space = 0, &
    omp_default_mem_alloc = 1, &
    omp_large_cap_mem_alloc = omp_default_mem_alloc, &
    omp_const_mem_alloc = 1, &
    omp_high_bw_mem_alloc = 1, &
    omp_low_lat_mem_alloc = 1, &
    omp_thread_mem_alloc = omp_atv_thread, &
    omp_pteam_mem_alloc = omp_atv_pteam, &
    omp_cgroup_mem_alloc = omp_atv_cgroup

  integer(kind=omp_integer_kind), parameter :: openmp_version = 200805

  interface

    subroutine omp_set_num_threads(nthreads) bind(c)
      import
      integer(kind=omp_integer_kind), value :: nthreads
    end subroutine omp_set_num_threads

    function omp_get_num_threads() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_num_threads
    end function omp_get_num_threads

    function omp_get_max_threads() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_max_threads
    end function omp_get_max_threads

    function omp_get_thread_num() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_thread_num
    end function omp_get_thread_num

    function omp_get_num_procs() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_num_procs
    end function omp_get_num_procs

    function omp_in_parallel() bind(c)
      import
      logical(kind=omp_logical_kind) :: omp_in_parallel
    end function omp_in_parallel

    subroutine omp_set_dynamic(enable) bind(c)
      import
      logical(kind=omp_logical_kind), value :: enable
    end subroutine omp_set_dynamic

    function omp_get_dynamic() bind(c)
      import
      logical(kind=omp_logical_kind) :: omp_get_dynamic
    end function omp_get_dynamic

    function omp_get_cancelation() bind(c)
      import
      logical(kind=omp_logical_kind) :: omp_get_cancelation
    end function omp_get_cancelation

    subroutine omp_set_nested(enable) bind(c)
      import
      logical(kind=omp_logical_kind), value :: enable
    end subroutine omp_set_nested

    function omp_get_nested() bind(c)
      import
      logical(kind=omp_logical_kind) ::omp_get_nested
    end function omp_get_nested

    subroutine omp_set_schedule(kind, modifier) bind(c)
      import
      integer(kind=omp_integer_kind), value :: kind, modifier
    end subroutine omp_set_schedule

    subroutine omp_get_schedule(kind, modifier) bind(c)
      import
      integer(kind=omp_integer_kind), intent(out) :: kind, modifier
    end subroutine omp_get_schedule

    function omp_get_thread_limit() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_thread_limit
    end function omp_get_thread_limit

    function omp_get_supported_active_levels() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_supported_active_levels
    end function omp_get_supported_active_levels

    subroutine omp_set_max_active_levels(max_levels) bind(c)
      import
      integer(kind=omp_integer_kind), value :: max_levels
    end subroutine omp_set_max_active_levels

    function omp_get_max_active_levels() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_max_active_levels
    end function omp_get_max_active_levels

    function omp_get_level() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_level
    end function omp_get_level

    function omp_get_ancestor_thread_num(level) bind(c)
      import
      integer(kind=omp_integer_kind), value :: level
      integer(kind=omp_integer_kind) :: omp_get_ancestor_thread_num
    end function omp_get_ancestor_thread_num

    function omp_get_team_size(level) bind(c)
      import
      integer(kind=omp_integer_kind), value :: level
      integer(kind=omp_integer_kind) :: omp_get_team_size
    end function omp_get_team_size

    function omp_get_active_level() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_active_level
    end function omp_get_active_level

    function omp_in_final() bind(c)
      import
      logical(kind=omp_logical_kind) :: omp_in_final
    end function omp_in_final

    function omp_get_proc_bind() bind(c)
      import
      integer(kind=omp_proc_bind_kind) :: omp_get_proc_bind
    end function omp_get_proc_bind

    function omp_get_num_places() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_num_places
    end function omp_get_num_places

    function omp_get_place_num_procs(place_num) bind(c)
      import
      integer(kind=omp_integer_kind), value :: place_num
      integer(kind=omp_integer_kind) omp_get_place_num_procs
    end function omp_get_place_num_procs

    subroutine omp_get_place_proc_ids(place_num, ids) bind(c)
      import
      integer(kind=omp_integer_kind), value :: place_num
      integer(kind=omp_integer_kind), intent(out) :: ids(*)
    end subroutine omp_get_place_proc_ids

    function omp_get_place_num() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_place_num
    end function omp_get_place_num

    function omp_get_partition_num_places() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_partition_num_places
    end function omp_get_partition_num_places

    subroutine omp_get_partition_place_nums(place_nums) bind(c)
      import
      integer(kind=omp_integer_kind), intent(out) :: place_nums(*)
    end subroutine omp_get_partition_place_nums

    subroutine omp_set_affinity_format(format)
      import
      character(len=*), intent(in) :: format
    end subroutine omp_set_affinity_format

    function omp_get_affinity_format(buffer)
      import
      character(len=*), intent(out) :: buffer
      integer(kind=omp_integer_kind) :: omp_get_affinity_format
    end function omp_get_affinity_format

    subroutine omp_display_affinity(format)
      import
      character(len=*), intent(in) :: format
    end subroutine omp_display_affinity

    function omp_capture_affinity(buffer, format)
      import
      character(len=*), intent(out) :: buffer
      character(len=*), intent(in) :: format
      integer(kind=omp_integer_kind) omp_capture_affinity
    end function omp_capture_affinity

    subroutine omp_set_default_device(device_num) bind(c)
      import
      integer(kind=omp_integer_kind), value :: device_num
    end subroutine omp_set_default_device

    function omp_get_default_device() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_default_device
    end function omp_get_default_device

    function omp_get_num_devices() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_num_devices
    end function omp_get_num_devices

    function omp_get_device_num() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_device_num
    end function omp_get_device_num

    function omp_get_num_teams() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_num_teams
    end function omp_get_num_teams

    function omp_get_team_num() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_team_num
    end function omp_get_team_num

    function omp_is_initial_device() bind(c)
      import
      integer(kind=omp_logical_kind) :: omp_is_initial_device ! TODO: should this be LOGICAL?
    end function omp_is_initial_device

    function omp_get_initial_device() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_initial_device
    end function omp_get_initial_device

    function omp_get_max_task_priority() bind(c)
      import
      integer(kind=omp_integer_kind) :: omp_get_max_task_priority
    end function omp_get_max_task_priority

    function omp_pause_resource(kind, device_num) bind(c)
      import
      integer(kind=omp_pause_resource_kind), value :: kind
      integer(kind=omp_integer_kind), value :: device_num
      integer(kind=omp_integer_kind) :: omp_pause_resource
    end function omp_pause_resource

    function omp_pause_resource_all(kind)
      import
      integer(kind=omp_pause_resource_kind), value :: kind
      integer(kind=omp_integer_kind) :: omp_pause_resource_all
    end function omp_pause_resource_all

! Lock routines
    subroutine omp_init_lock(lockvar) bind(c, name="omp_init_lock_")
      import
      integer(kind=omp_lock_kind), intent(out) :: lockvar
    end subroutine omp_init_lock

    subroutine omp_init_lock_with_hint(lockvar, hint) bind(c, name="omp_init_lock_with_hint_")
      import
      integer(kind=omp_lock_kind), intent(out) :: lockvar
      integer(kind=omp_sync_hint_kind), value :: hint
    end subroutine omp_init_lock_with_hint

    subroutine omp_destroy_lock(lockvar) bind(c, name="omp_destroy_lock_")
      import
      integer(kind=omp_lock_kind), intent(inout) :: lockvar
    end subroutine omp_destroy_lock

    subroutine omp_set_lock(lockvar) bind(c, name="omp_set_lock_")
      import
      integer(kind=omp_lock_kind), intent(inout) :: lockvar
    end subroutine omp_set_lock

    subroutine omp_unset_lock(lockvar) bind(c, name="omp_unset_lock_")
      import
      integer(kind=omp_lock_kind), intent(inout) :: lockvar
    end subroutine omp_unset_lock

    function omp_test_lock(lockvar) bind(c, name="omp_test_lock_")
      import
      integer(kind=omp_lock_kind), intent(inout) :: lockvar
      logical(kind=omp_logical_kind) :: omp_test_lock
    end function omp_test_lock

    subroutine omp_init_nest_lock(lockvar) bind(c, name="omp_init_nest_lock_")
      import
      integer(kind=omp_nest_lock_kind), intent(out) :: lockvar
    end subroutine omp_init_nest_lock

    subroutine omp_init_nest_lock_with_hint(lockvar, hint) bind(c, name="omp_init_nest_lock_with_hint_")
      import
      integer(kind=omp_nest_lock_kind), intent(out) :: lockvar
      integer(kind=omp_sync_hint_kind), value :: hint
    end subroutine omp_init_nest_lock_with_hint

    subroutine omp_destroy_nest_lock(lockvar) bind(c, name="omp_destroy_nest_lock_")
      import
      integer(kind=omp_nest_lock_kind), intent(inout) :: lockvar
    end subroutine omp_destroy_nest_lock

    subroutine omp_set_nest_lock(lockvar) bind(c, name="omp_set_nest_lock_")
      import
      integer(kind=omp_nest_lock_kind), intent(inout) :: lockvar
    end subroutine omp_set_nest_lock

    subroutine omp_unset_nest_lock(lockvar) bind(c, name="omp_unset_nest_lock_")
      import
      integer(kind=omp_nest_lock_kind), intent(inout) :: lockvar
    end subroutine omp_unset_nest_lock

    function omp_test_nest_lock(lockvar) bind(c, name="omp_test_nest_lock_")
      import
      integer(kind=omp_integer_kind) :: omp_test_nest_lock
      integer(kind=omp_nest_lock_kind), intent(inout) :: lockvar
    end function omp_test_nest_lock

! Timing routines
    function omp_get_wtime() bind(c)
      double precision omp_get_wtime
    end function omp_get_wtime

    function omp_get_wtick() bind(c)
      double precision omp_get_wtick
    end function omp_get_wtick

! Event routine
    subroutine omp_fullfill_event(event) bind(c) ! TODO: is this the correct spelling?
      import
      integer(kind=omp_event_handle_kind) :: event
    end subroutine omp_fullfill_event

! Device Memory Routines

! Memory Management Routines
    function omp_init_allocator(memspace, ntraits, traits)
      import
      integer(kind=omp_memspace_handle_kind), value :: memspace
      integer, value :: ntraits
      type(omp_alloctrait), intent(in) :: traits(*)
      integer(kind=omp_allocator_handle_kind) :: omp_init_allocator
    end function omp_init_allocator

    subroutine omp_destroy_allocator(allocator) bind(c)
      import
      integer(kind=omp_allocator_handle_kind), value :: allocator
    end subroutine omp_destroy_allocator

    subroutine omp_set_default_allocator(allocator) bind(c)
      import
      integer(kind=omp_allocator_handle_kind), value :: allocator
    end subroutine omp_set_default_allocator

    function omp_get_default_allocator()
      import
      integer(kind=omp_allocator_handle_kind) :: omp_get_default_allocator
    end function omp_get_default_allocator

  end interface