├── .arcconfig ├── .gitignore ├── CMakeLists.txt ├── CREDITS.txt ├── LICENSE.txt ├── README.rst ├── cmake ├── DetectTestCompiler │ └── CMakeLists.txt ├── HandleOpenMPOptions.cmake ├── OpenMPTesting.cmake └── config-ix.cmake ├── libomptarget ├── CMakeLists.txt ├── README.txt ├── cmake │ └── Modules │ │ ├── LibomptargetGetDependencies.cmake │ │ ├── LibomptargetNVPTXBitcodeLibrary.cmake │ │ └── LibomptargetUtils.cmake ├── deviceRTLs │ ├── CMakeLists.txt │ ├── interface.h │ └── nvptx │ │ ├── CMakeLists.txt │ │ ├── docs │ │ └── ReductionDesign.txt │ │ ├── src │ │ ├── cancel.cu │ │ ├── critical.cu │ │ ├── data_sharing.cu │ │ ├── debug.h │ │ ├── libcall.cu │ │ ├── loop.cu │ │ ├── nvptx_interface.h │ │ ├── omp_data.cu │ │ ├── omptarget-nvptx.cu │ │ ├── omptarget-nvptx.h │ │ ├── omptarget-nvptxi.h │ │ ├── option.h │ │ ├── parallel.cu │ │ ├── reduction.cu │ │ ├── state-queue.h │ │ ├── state-queuei.h │ │ ├── support.h │ │ ├── supporti.h │ │ ├── sync.cu │ │ ├── target_impl.h │ │ └── task.cu │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── api │ │ ├── ignored.c │ │ ├── max_threads.c │ │ └── thread_limit.c │ │ ├── data_sharing │ │ └── alignment.c │ │ ├── lit.cfg │ │ ├── lit.site.cfg.in │ │ └── parallel │ │ ├── barrier.c │ │ ├── flush.c │ │ ├── level.c │ │ ├── nested.c │ │ ├── num_threads.c │ │ ├── spmd_parallel_regions.cpp │ │ ├── thread_limit.c │ │ └── tripcount.c ├── include │ ├── omptarget.h │ └── omptargetplugin.h ├── plugins │ ├── CMakeLists.txt │ ├── aarch64 │ │ └── CMakeLists.txt │ ├── common │ │ └── elf_common.c │ ├── cuda │ │ ├── CMakeLists.txt │ │ └── src │ │ │ └── rtl.cpp │ ├── exports │ ├── generic-elf-64bit │ │ └── src │ │ │ └── rtl.cpp │ ├── ppc64 │ │ └── CMakeLists.txt │ ├── ppc64le │ │ └── CMakeLists.txt │ └── x86_64 │ │ └── CMakeLists.txt ├── src │ ├── CMakeLists.txt │ ├── api.cpp │ ├── device.cpp │ ├── device.h │ ├── exports │ ├── interface.cpp │ ├── omptarget.cpp │ ├── private.h │ ├── rtl.cpp │ └── rtl.h └── test │ ├── CMakeLists.txt │ ├── api │ └── omp_get_num_devices.c │ ├── env │ └── omp_target_debug.c │ ├── lit.cfg │ ├── lit.site.cfg.in │ ├── mapping │ ├── declare_mapper_api.cpp │ └── pr38704.c │ ├── offloading │ ├── looptripcnt.c │ ├── offloading_success.c │ ├── offloading_success.cpp │ ├── requires.c │ └── target_depend_nowait.cpp │ └── unified_shared_memory │ ├── api.c │ ├── close_enter_exit.c │ ├── close_manual.c │ ├── close_modifier.c │ └── shared_update.c ├── runtime ├── .clang-format ├── CMakeLists.txt ├── README.txt ├── cmake │ ├── LibompCheckFortranFlag.cmake │ ├── LibompCheckLinkerFlag.cmake │ ├── LibompDefinitions.cmake │ ├── LibompExports.cmake │ ├── LibompGetArchitecture.cmake │ ├── LibompHandleFlags.cmake │ ├── LibompMicroTests.cmake │ ├── LibompUtils.cmake │ └── config-ix.cmake ├── doc │ ├── Reference.pdf │ └── doxygen │ │ ├── config │ │ ├── header.tex │ │ └── libomp_interface.h ├── src │ ├── CMakeLists.txt │ ├── dllexports │ ├── exports_so.txt │ ├── extractExternal.cpp │ ├── i18n │ │ └── en_US.txt │ ├── include │ │ ├── omp-tools.h.var │ │ ├── omp.h.var │ │ ├── omp_lib.f.var │ │ ├── omp_lib.f90.var │ │ └── omp_lib.h.var │ ├── kmp.h │ ├── kmp_affinity.cpp │ ├── kmp_affinity.h │ ├── kmp_alloc.cpp │ ├── kmp_atomic.cpp │ ├── kmp_atomic.h │ ├── kmp_barrier.cpp │ ├── kmp_cancel.cpp │ ├── kmp_config.h.cmake │ ├── kmp_csupport.cpp │ ├── kmp_debug.cpp │ ├── kmp_debug.h │ ├── kmp_debugger.cpp │ ├── kmp_debugger.h │ ├── kmp_dispatch.cpp │ ├── kmp_dispatch.h │ ├── kmp_dispatch_hier.h │ ├── kmp_environment.cpp │ ├── kmp_environment.h │ ├── kmp_error.cpp │ ├── kmp_error.h │ ├── kmp_ftn_cdecl.cpp │ ├── kmp_ftn_entry.h │ ├── kmp_ftn_extra.cpp │ ├── kmp_ftn_os.h │ ├── kmp_ftn_stdcall.cpp │ ├── kmp_global.cpp │ ├── kmp_gsupport.cpp │ ├── kmp_i18n.cpp │ ├── kmp_i18n.h │ ├── kmp_import.cpp │ ├── kmp_io.cpp │ ├── kmp_io.h │ ├── kmp_itt.cpp │ ├── kmp_itt.h │ ├── kmp_itt.inl │ ├── kmp_lock.cpp │ ├── kmp_lock.h │ ├── kmp_omp.h │ ├── kmp_os.h │ ├── kmp_platform.h │ ├── kmp_runtime.cpp │ ├── kmp_safe_c_api.h │ ├── kmp_sched.cpp │ ├── kmp_settings.cpp │ ├── kmp_settings.h │ ├── kmp_stats.cpp │ ├── kmp_stats.h │ ├── kmp_stats_timing.cpp │ ├── kmp_stats_timing.h │ ├── kmp_str.cpp │ ├── kmp_str.h │ ├── kmp_stub.cpp │ ├── kmp_stub.h │ ├── kmp_taskdeps.cpp │ ├── kmp_taskdeps.h │ ├── kmp_tasking.cpp │ ├── kmp_threadprivate.cpp │ ├── kmp_utility.cpp │ ├── kmp_version.cpp │ ├── kmp_version.h │ ├── kmp_wait_release.cpp │ ├── kmp_wait_release.h │ ├── kmp_wrapper_getpid.h │ ├── kmp_wrapper_malloc.h │ ├── libomp.rc.var │ ├── ompt-event-specific.h │ ├── ompt-general.cpp │ ├── ompt-internal.h │ ├── ompt-specific.cpp │ ├── ompt-specific.h │ ├── test-touch.c │ ├── thirdparty │ │ └── ittnotify │ │ │ ├── disable_warnings.h │ │ │ ├── ittnotify.h │ │ │ ├── ittnotify_config.h │ │ │ ├── ittnotify_static.cpp │ │ │ ├── ittnotify_static.h │ │ │ ├── ittnotify_types.h │ │ │ └── legacy │ │ │ └── ittnotify.h │ ├── tsan_annotations.cpp │ ├── tsan_annotations.h │ ├── z_Linux_asm.S │ ├── z_Linux_util.cpp │ ├── z_Windows_NT-586_asm.asm │ ├── z_Windows_NT-586_util.cpp │ └── z_Windows_NT_util.cpp ├── test │ ├── CMakeLists.txt │ ├── affinity │ │ ├── bug-nested.c │ │ └── format │ │ │ ├── affinity_display.1.c │ │ │ ├── affinity_values.c │ │ │ ├── api.c │ │ │ ├── api2.c │ │ │ ├── check.py │ │ │ ├── fields_modifiers.c │ │ │ ├── fields_values.c │ │ │ ├── increase.c │ │ │ ├── lit.local.cfg │ │ │ ├── nested.c │ │ │ ├── nested2.c │ │ │ ├── nested_mixed.c │ │ │ ├── nested_serial.c │ │ │ ├── proc_bind.c │ │ │ ├── simple.c │ │ │ └── simple_env.c │ ├── api │ │ ├── has_openmp.c │ │ ├── kmp_aligned_malloc.c │ │ ├── kmp_set_defaults_lock_bug.c │ │ ├── omp_alloc_def_fb.c │ │ ├── omp_alloc_hbw.c │ │ ├── omp_alloc_null_fb.c │ │ ├── omp_get_num_devices.c │ │ ├── omp_get_num_threads.c │ │ ├── omp_get_wtick.c │ │ ├── omp_get_wtime.c │ │ ├── omp_in_parallel.c │ │ └── omp_pause_resource.c │ ├── atomic │ │ └── omp_atomic.c │ ├── barrier │ │ └── omp_barrier.c │ ├── critical │ │ └── omp_critical.c │ ├── env │ │ ├── kmp_aff_disable_hwloc.c │ │ ├── kmp_set_dispatch_buf.c │ │ ├── omp_target_offload.c │ │ ├── omp_thread_limit.c │ │ └── omp_wait_policy.c │ ├── flush │ │ └── omp_flush.c │ ├── lit.cfg │ ├── lit.site.cfg.in │ ├── lock │ │ ├── omp_init_lock.c │ │ ├── omp_lock.c │ │ ├── omp_nest_lock.c │ │ ├── omp_test_lock.c │ │ └── omp_test_nest_lock.c │ ├── master │ │ ├── omp_master.c │ │ └── omp_master_3.c │ ├── misc_bugs │ │ ├── cancellation_for_sections.c │ │ ├── many-microtask-args.c │ │ ├── omp_foreign_thread_team_reuse.c │ │ ├── stack-propagate.c │ │ ├── teams-no-par.c │ │ └── teams-reduction.c │ ├── omp_my_sleep.h │ ├── omp_testsuite.h │ ├── ompt │ │ ├── callback.h │ │ ├── cancel │ │ │ ├── cancel_parallel.c │ │ │ ├── cancel_taskgroup.c │ │ │ └── cancel_worksharing.c │ │ ├── loadtool │ │ │ ├── tool_available │ │ │ │ └── tool_available.c │ │ │ ├── tool_available_search │ │ │ │ └── tool_available_search.c │ │ │ └── tool_not_available │ │ │ │ └── tool_not_available.c │ │ ├── misc │ │ │ ├── api_calls_from_other_thread.cpp │ │ │ ├── api_calls_misc.c │ │ │ ├── api_calls_places.c │ │ │ ├── api_calls_without_ompt.c │ │ │ ├── control_tool.c │ │ │ ├── control_tool_no_ompt_support.c │ │ │ ├── finalize_tool.c │ │ │ ├── interoperability.cpp │ │ │ ├── threads.c │ │ │ ├── threads_nested.c │ │ │ └── unset_callback.c │ │ ├── ompt-signal.h │ │ ├── parallel │ │ │ ├── dynamic_enough_threads.c │ │ │ ├── dynamic_not_enough_threads.c │ │ │ ├── max_active_levels_serialized.c │ │ │ ├── nested.c │ │ │ ├── nested_lwt.c │ │ │ ├── nested_serialized.c │ │ │ ├── nested_thread_num.c │ │ │ ├── nested_threadnum.c │ │ │ ├── no_thread_num_clause.c │ │ │ ├── normal.c │ │ │ ├── not_enough_threads.c │ │ │ ├── parallel_if0.c │ │ │ └── serialized.c │ │ ├── synchronization │ │ │ ├── barrier │ │ │ │ ├── explicit.c │ │ │ │ ├── for_loop.c │ │ │ │ ├── for_simd.c │ │ │ │ ├── implicit_task_data.c │ │ │ │ ├── parallel_region.c │ │ │ │ ├── sections.c │ │ │ │ └── single.c │ │ │ ├── critical.c │ │ │ ├── flush.c │ │ │ ├── lock.c │ │ │ ├── master.c │ │ │ ├── nest_lock.c │ │ │ ├── ordered.c │ │ │ ├── taskgroup.c │ │ │ ├── taskwait.c │ │ │ ├── test_lock.c │ │ │ ├── test_nest_lock.c │ │ │ └── test_nest_lock_parallel.c │ │ ├── tasks │ │ │ ├── dependences.c │ │ │ ├── explicit_task.c │ │ │ ├── serialized.c │ │ │ ├── task_in_joinbarrier.c │ │ │ ├── task_memory.c │ │ │ ├── task_types.c │ │ │ ├── task_types_serialized.c │ │ │ ├── taskloop.c │ │ │ ├── taskyield.c │ │ │ └── untied_task.c │ │ ├── teams │ │ │ ├── parallel_team.c │ │ │ ├── serial_teams.c │ │ │ ├── serialized.c │ │ │ └── team.c │ │ └── worksharing │ │ │ ├── for │ │ │ ├── auto.c │ │ │ ├── auto_serialized.c │ │ │ ├── auto_split.c │ │ │ ├── base.h │ │ │ ├── base_serialized.h │ │ │ ├── base_split.h │ │ │ ├── dynamic.c │ │ │ ├── dynamic_serialized.c │ │ │ ├── dynamic_split.c │ │ │ ├── guided.c │ │ │ ├── guided_serialized.c │ │ │ ├── guided_split.c │ │ │ ├── runtime.c │ │ │ ├── runtime_serialized.c │ │ │ ├── runtime_split.c │ │ │ ├── static.c │ │ │ ├── static_serialized.c │ │ │ └── static_split.c │ │ │ ├── sections.c │ │ │ └── single.c │ ├── parallel │ │ ├── omp_nested.c │ │ ├── omp_parallel_copyin.c │ │ ├── omp_parallel_default.c │ │ ├── omp_parallel_firstprivate.c │ │ ├── omp_parallel_if.c │ │ ├── omp_parallel_num_threads.c │ │ ├── omp_parallel_private.c │ │ ├── omp_parallel_reduction.c │ │ └── omp_parallel_shared.c │ ├── tasking │ │ ├── bug_36720.c │ │ ├── bug_nested_proxy_task.c │ │ ├── bug_proxy_task_dep_waiting.c │ │ ├── bug_serial_taskgroup.c │ │ ├── kmp_detach_tasks_t1.c │ │ ├── kmp_detach_tasks_t2.c │ │ ├── kmp_detach_tasks_t3.c │ │ ├── kmp_task_modifier_simple_par_new.cpp │ │ ├── kmp_task_modifier_simple_par_old.cpp │ │ ├── kmp_task_modifier_simple_ws_new.cpp │ │ ├── kmp_task_modifier_simple_ws_old.cpp │ │ ├── kmp_task_reduction_nest.cpp │ │ ├── kmp_taskloop.c │ │ ├── nested_parallel_tasking.c │ │ ├── nested_task_creation.c │ │ ├── omp50_task_depend_mtx.c │ │ ├── omp50_task_depend_mtx2.c │ │ ├── omp_fill_taskqueue.c │ │ ├── omp_task.c │ │ ├── omp_task_depend_resize_hashmap.c │ │ ├── omp_task_final.c │ │ ├── omp_task_firstprivate.c │ │ ├── omp_task_if.c │ │ ├── omp_task_imp_firstprivate.c │ │ ├── omp_task_priority.c │ │ ├── omp_task_private.c │ │ ├── omp_task_shared.c │ │ ├── omp_taskloop_grainsize.c │ │ ├── omp_taskloop_num_tasks.c │ │ ├── omp_taskwait.c │ │ └── omp_taskyield.c │ ├── threadprivate │ │ ├── omp_threadprivate.c │ │ └── omp_threadprivate_for.c │ └── worksharing │ │ ├── for │ │ ├── bug_set_schedule_0.c │ │ ├── kmp_doacross_check.c │ │ ├── kmp_sch_simd_guided.c │ │ ├── kmp_sch_simd_runtime_api.c │ │ ├── kmp_sch_simd_runtime_guided.c │ │ ├── kmp_sch_simd_runtime_static.c │ │ ├── kmp_set_dispatch_buf.c │ │ ├── omp_doacross.c │ │ ├── omp_for_bigbounds.c │ │ ├── omp_for_collapse.c │ │ ├── omp_for_firstprivate.c │ │ ├── omp_for_lastprivate.c │ │ ├── omp_for_nowait.c │ │ ├── omp_for_ordered.c │ │ ├── omp_for_private.c │ │ ├── omp_for_reduction.c │ │ ├── omp_for_schedule_auto.c │ │ ├── omp_for_schedule_dynamic.c │ │ ├── omp_for_schedule_guided.c │ │ ├── omp_for_schedule_runtime.c │ │ ├── omp_for_schedule_static.c │ │ ├── omp_for_schedule_static_3.c │ │ ├── omp_monotonic_env.c │ │ ├── omp_monotonic_schedule_set_get.c │ │ ├── omp_parallel_for_firstprivate.c │ │ ├── omp_parallel_for_if.c │ │ ├── omp_parallel_for_lastprivate.c │ │ ├── omp_parallel_for_ordered.c │ │ ├── omp_parallel_for_private.c │ │ └── omp_parallel_for_reduction.c │ │ ├── sections │ │ ├── omp_parallel_sections_firstprivate.c │ │ ├── omp_parallel_sections_lastprivate.c │ │ ├── omp_parallel_sections_private.c │ │ ├── omp_parallel_sections_reduction.c │ │ ├── omp_section_firstprivate.c │ │ ├── omp_section_lastprivate.c │ │ ├── omp_section_private.c │ │ ├── omp_sections_nowait.c │ │ └── omp_sections_reduction.c │ │ └── single │ │ ├── omp_single.c │ │ ├── omp_single_copyprivate.c │ │ ├── omp_single_nowait.c │ │ └── omp_single_private.c └── tools │ ├── check-depends.pl │ ├── check-execstack.pl │ ├── check-instruction-set.pl │ ├── generate-def.pl │ ├── lib │ ├── Build.pm │ ├── LibOMP.pm │ ├── Platform.pm │ ├── Uname.pm │ └── tools.pm │ ├── message-converter.pl │ └── summarizeStats.py └── www ├── README.txt ├── Reference.pdf ├── content.css ├── index.html └── menu.css /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/.arcconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/README.rst -------------------------------------------------------------------------------- /cmake/DetectTestCompiler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/cmake/DetectTestCompiler/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/HandleOpenMPOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/cmake/HandleOpenMPOptions.cmake -------------------------------------------------------------------------------- /cmake/OpenMPTesting.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/cmake/OpenMPTesting.cmake -------------------------------------------------------------------------------- /cmake/config-ix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/cmake/config-ix.cmake -------------------------------------------------------------------------------- /libomptarget/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/README.txt -------------------------------------------------------------------------------- /libomptarget/cmake/Modules/LibomptargetGetDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/cmake/Modules/LibomptargetGetDependencies.cmake -------------------------------------------------------------------------------- /libomptarget/cmake/Modules/LibomptargetNVPTXBitcodeLibrary.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/cmake/Modules/LibomptargetNVPTXBitcodeLibrary.cmake -------------------------------------------------------------------------------- /libomptarget/cmake/Modules/LibomptargetUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/cmake/Modules/LibomptargetUtils.cmake -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/interface.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/docs/ReductionDesign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/docs/ReductionDesign.txt -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/cancel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/cancel.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/critical.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/critical.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/data_sharing.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/data_sharing.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/debug.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/libcall.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/libcall.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/loop.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/loop.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/nvptx_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/nvptx_interface.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/omp_data.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/omp_data.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/omptarget-nvptx.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/omptarget-nvptx.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/omptarget-nvptx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/omptarget-nvptx.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/omptarget-nvptxi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/omptarget-nvptxi.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/option.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/parallel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/parallel.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/reduction.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/reduction.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/state-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/state-queue.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/state-queuei.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/state-queuei.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/support.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/supporti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/supporti.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/sync.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/sync.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/target_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/target_impl.h -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/src/task.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/src/task.cu -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/api/ignored.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/api/ignored.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/api/max_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/api/max_threads.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/api/thread_limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/api/thread_limit.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/data_sharing/alignment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/data_sharing/alignment.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/lit.cfg -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/lit.site.cfg.in -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/barrier.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/flush.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/level.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/nested.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/num_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/num_threads.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/spmd_parallel_regions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/spmd_parallel_regions.cpp -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/thread_limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/thread_limit.c -------------------------------------------------------------------------------- /libomptarget/deviceRTLs/nvptx/test/parallel/tripcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/deviceRTLs/nvptx/test/parallel/tripcount.c -------------------------------------------------------------------------------- /libomptarget/include/omptarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/include/omptarget.h -------------------------------------------------------------------------------- /libomptarget/include/omptargetplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/include/omptargetplugin.h -------------------------------------------------------------------------------- /libomptarget/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/plugins/aarch64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/aarch64/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/plugins/common/elf_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/common/elf_common.c -------------------------------------------------------------------------------- /libomptarget/plugins/cuda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/cuda/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/plugins/cuda/src/rtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/cuda/src/rtl.cpp -------------------------------------------------------------------------------- /libomptarget/plugins/exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/exports -------------------------------------------------------------------------------- /libomptarget/plugins/generic-elf-64bit/src/rtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/generic-elf-64bit/src/rtl.cpp -------------------------------------------------------------------------------- /libomptarget/plugins/ppc64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/ppc64/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/plugins/ppc64le/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/ppc64le/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/plugins/x86_64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/plugins/x86_64/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/src/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/api.cpp -------------------------------------------------------------------------------- /libomptarget/src/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/device.cpp -------------------------------------------------------------------------------- /libomptarget/src/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/device.h -------------------------------------------------------------------------------- /libomptarget/src/exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/exports -------------------------------------------------------------------------------- /libomptarget/src/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/interface.cpp -------------------------------------------------------------------------------- /libomptarget/src/omptarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/omptarget.cpp -------------------------------------------------------------------------------- /libomptarget/src/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/private.h -------------------------------------------------------------------------------- /libomptarget/src/rtl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/rtl.cpp -------------------------------------------------------------------------------- /libomptarget/src/rtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/src/rtl.h -------------------------------------------------------------------------------- /libomptarget/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/CMakeLists.txt -------------------------------------------------------------------------------- /libomptarget/test/api/omp_get_num_devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/api/omp_get_num_devices.c -------------------------------------------------------------------------------- /libomptarget/test/env/omp_target_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/env/omp_target_debug.c -------------------------------------------------------------------------------- /libomptarget/test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/lit.cfg -------------------------------------------------------------------------------- /libomptarget/test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/lit.site.cfg.in -------------------------------------------------------------------------------- /libomptarget/test/mapping/declare_mapper_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/mapping/declare_mapper_api.cpp -------------------------------------------------------------------------------- /libomptarget/test/mapping/pr38704.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/mapping/pr38704.c -------------------------------------------------------------------------------- /libomptarget/test/offloading/looptripcnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/offloading/looptripcnt.c -------------------------------------------------------------------------------- /libomptarget/test/offloading/offloading_success.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/offloading/offloading_success.c -------------------------------------------------------------------------------- /libomptarget/test/offloading/offloading_success.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/offloading/offloading_success.cpp -------------------------------------------------------------------------------- /libomptarget/test/offloading/requires.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/offloading/requires.c -------------------------------------------------------------------------------- /libomptarget/test/offloading/target_depend_nowait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/offloading/target_depend_nowait.cpp -------------------------------------------------------------------------------- /libomptarget/test/unified_shared_memory/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/unified_shared_memory/api.c -------------------------------------------------------------------------------- /libomptarget/test/unified_shared_memory/close_enter_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/unified_shared_memory/close_enter_exit.c -------------------------------------------------------------------------------- /libomptarget/test/unified_shared_memory/close_manual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/unified_shared_memory/close_manual.c -------------------------------------------------------------------------------- /libomptarget/test/unified_shared_memory/close_modifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/unified_shared_memory/close_modifier.c -------------------------------------------------------------------------------- /libomptarget/test/unified_shared_memory/shared_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/libomptarget/test/unified_shared_memory/shared_update.c -------------------------------------------------------------------------------- /runtime/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/.clang-format -------------------------------------------------------------------------------- /runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/README.txt -------------------------------------------------------------------------------- /runtime/cmake/LibompCheckFortranFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompCheckFortranFlag.cmake -------------------------------------------------------------------------------- /runtime/cmake/LibompCheckLinkerFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompCheckLinkerFlag.cmake -------------------------------------------------------------------------------- /runtime/cmake/LibompDefinitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompDefinitions.cmake -------------------------------------------------------------------------------- /runtime/cmake/LibompExports.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompExports.cmake -------------------------------------------------------------------------------- /runtime/cmake/LibompGetArchitecture.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompGetArchitecture.cmake -------------------------------------------------------------------------------- /runtime/cmake/LibompHandleFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompHandleFlags.cmake -------------------------------------------------------------------------------- /runtime/cmake/LibompMicroTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompMicroTests.cmake -------------------------------------------------------------------------------- /runtime/cmake/LibompUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/LibompUtils.cmake -------------------------------------------------------------------------------- /runtime/cmake/config-ix.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/cmake/config-ix.cmake -------------------------------------------------------------------------------- /runtime/doc/Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/doc/Reference.pdf -------------------------------------------------------------------------------- /runtime/doc/doxygen/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/doc/doxygen/config -------------------------------------------------------------------------------- /runtime/doc/doxygen/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/doc/doxygen/header.tex -------------------------------------------------------------------------------- /runtime/doc/doxygen/libomp_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/doc/doxygen/libomp_interface.h -------------------------------------------------------------------------------- /runtime/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/src/dllexports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/dllexports -------------------------------------------------------------------------------- /runtime/src/exports_so.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/exports_so.txt -------------------------------------------------------------------------------- /runtime/src/extractExternal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/extractExternal.cpp -------------------------------------------------------------------------------- /runtime/src/i18n/en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/i18n/en_US.txt -------------------------------------------------------------------------------- /runtime/src/include/omp-tools.h.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/include/omp-tools.h.var -------------------------------------------------------------------------------- /runtime/src/include/omp.h.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/include/omp.h.var -------------------------------------------------------------------------------- /runtime/src/include/omp_lib.f.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/include/omp_lib.f.var -------------------------------------------------------------------------------- /runtime/src/include/omp_lib.f90.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/include/omp_lib.f90.var -------------------------------------------------------------------------------- /runtime/src/include/omp_lib.h.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/include/omp_lib.h.var -------------------------------------------------------------------------------- /runtime/src/kmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp.h -------------------------------------------------------------------------------- /runtime/src/kmp_affinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_affinity.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_affinity.h -------------------------------------------------------------------------------- /runtime/src/kmp_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_alloc.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_atomic.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_atomic.h -------------------------------------------------------------------------------- /runtime/src/kmp_barrier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_barrier.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_cancel.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_config.h.cmake -------------------------------------------------------------------------------- /runtime/src/kmp_csupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_csupport.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_debug.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_debug.h -------------------------------------------------------------------------------- /runtime/src/kmp_debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_debugger.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_debugger.h -------------------------------------------------------------------------------- /runtime/src/kmp_dispatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_dispatch.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_dispatch.h -------------------------------------------------------------------------------- /runtime/src/kmp_dispatch_hier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_dispatch_hier.h -------------------------------------------------------------------------------- /runtime/src/kmp_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_environment.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_environment.h -------------------------------------------------------------------------------- /runtime/src/kmp_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_error.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_error.h -------------------------------------------------------------------------------- /runtime/src/kmp_ftn_cdecl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_ftn_cdecl.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_ftn_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_ftn_entry.h -------------------------------------------------------------------------------- /runtime/src/kmp_ftn_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_ftn_extra.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_ftn_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_ftn_os.h -------------------------------------------------------------------------------- /runtime/src/kmp_ftn_stdcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_ftn_stdcall.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_global.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_gsupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_gsupport.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_i18n.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_i18n.h -------------------------------------------------------------------------------- /runtime/src/kmp_import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_import.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_io.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_io.h -------------------------------------------------------------------------------- /runtime/src/kmp_itt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_itt.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_itt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_itt.h -------------------------------------------------------------------------------- /runtime/src/kmp_itt.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_itt.inl -------------------------------------------------------------------------------- /runtime/src/kmp_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_lock.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_lock.h -------------------------------------------------------------------------------- /runtime/src/kmp_omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_omp.h -------------------------------------------------------------------------------- /runtime/src/kmp_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_os.h -------------------------------------------------------------------------------- /runtime/src/kmp_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_platform.h -------------------------------------------------------------------------------- /runtime/src/kmp_runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_runtime.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_safe_c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_safe_c_api.h -------------------------------------------------------------------------------- /runtime/src/kmp_sched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_sched.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_settings.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_settings.h -------------------------------------------------------------------------------- /runtime/src/kmp_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_stats.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_stats.h -------------------------------------------------------------------------------- /runtime/src/kmp_stats_timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_stats_timing.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_stats_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_stats_timing.h -------------------------------------------------------------------------------- /runtime/src/kmp_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_str.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_str.h -------------------------------------------------------------------------------- /runtime/src/kmp_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_stub.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_stub.h -------------------------------------------------------------------------------- /runtime/src/kmp_taskdeps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_taskdeps.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_taskdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_taskdeps.h -------------------------------------------------------------------------------- /runtime/src/kmp_tasking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_tasking.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_threadprivate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_threadprivate.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_utility.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_version.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_version.h -------------------------------------------------------------------------------- /runtime/src/kmp_wait_release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_wait_release.cpp -------------------------------------------------------------------------------- /runtime/src/kmp_wait_release.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_wait_release.h -------------------------------------------------------------------------------- /runtime/src/kmp_wrapper_getpid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_wrapper_getpid.h -------------------------------------------------------------------------------- /runtime/src/kmp_wrapper_malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/kmp_wrapper_malloc.h -------------------------------------------------------------------------------- /runtime/src/libomp.rc.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/libomp.rc.var -------------------------------------------------------------------------------- /runtime/src/ompt-event-specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/ompt-event-specific.h -------------------------------------------------------------------------------- /runtime/src/ompt-general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/ompt-general.cpp -------------------------------------------------------------------------------- /runtime/src/ompt-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/ompt-internal.h -------------------------------------------------------------------------------- /runtime/src/ompt-specific.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/ompt-specific.cpp -------------------------------------------------------------------------------- /runtime/src/ompt-specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/ompt-specific.h -------------------------------------------------------------------------------- /runtime/src/test-touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/test-touch.c -------------------------------------------------------------------------------- /runtime/src/thirdparty/ittnotify/disable_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/thirdparty/ittnotify/disable_warnings.h -------------------------------------------------------------------------------- /runtime/src/thirdparty/ittnotify/ittnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/thirdparty/ittnotify/ittnotify.h -------------------------------------------------------------------------------- /runtime/src/thirdparty/ittnotify/ittnotify_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/thirdparty/ittnotify/ittnotify_config.h -------------------------------------------------------------------------------- /runtime/src/thirdparty/ittnotify/ittnotify_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/thirdparty/ittnotify/ittnotify_static.cpp -------------------------------------------------------------------------------- /runtime/src/thirdparty/ittnotify/ittnotify_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/thirdparty/ittnotify/ittnotify_static.h -------------------------------------------------------------------------------- /runtime/src/thirdparty/ittnotify/ittnotify_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/thirdparty/ittnotify/ittnotify_types.h -------------------------------------------------------------------------------- /runtime/src/thirdparty/ittnotify/legacy/ittnotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/thirdparty/ittnotify/legacy/ittnotify.h -------------------------------------------------------------------------------- /runtime/src/tsan_annotations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/tsan_annotations.cpp -------------------------------------------------------------------------------- /runtime/src/tsan_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/tsan_annotations.h -------------------------------------------------------------------------------- /runtime/src/z_Linux_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/z_Linux_asm.S -------------------------------------------------------------------------------- /runtime/src/z_Linux_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/z_Linux_util.cpp -------------------------------------------------------------------------------- /runtime/src/z_Windows_NT-586_asm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/z_Windows_NT-586_asm.asm -------------------------------------------------------------------------------- /runtime/src/z_Windows_NT-586_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/z_Windows_NT-586_util.cpp -------------------------------------------------------------------------------- /runtime/src/z_Windows_NT_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/src/z_Windows_NT_util.cpp -------------------------------------------------------------------------------- /runtime/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/test/affinity/bug-nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/bug-nested.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/affinity_display.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/affinity_display.1.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/affinity_values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/affinity_values.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/api.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/api2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/api2.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/check.py -------------------------------------------------------------------------------- /runtime/test/affinity/format/fields_modifiers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/fields_modifiers.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/fields_values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/fields_values.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/increase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/increase.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/lit.local.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/test/affinity/format/nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/nested.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/nested2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/nested2.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/nested_mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/nested_mixed.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/nested_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/nested_serial.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/proc_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/proc_bind.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/simple.c -------------------------------------------------------------------------------- /runtime/test/affinity/format/simple_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/affinity/format/simple_env.c -------------------------------------------------------------------------------- /runtime/test/api/has_openmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/has_openmp.c -------------------------------------------------------------------------------- /runtime/test/api/kmp_aligned_malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/kmp_aligned_malloc.c -------------------------------------------------------------------------------- /runtime/test/api/kmp_set_defaults_lock_bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/kmp_set_defaults_lock_bug.c -------------------------------------------------------------------------------- /runtime/test/api/omp_alloc_def_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_alloc_def_fb.c -------------------------------------------------------------------------------- /runtime/test/api/omp_alloc_hbw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_alloc_hbw.c -------------------------------------------------------------------------------- /runtime/test/api/omp_alloc_null_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_alloc_null_fb.c -------------------------------------------------------------------------------- /runtime/test/api/omp_get_num_devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_get_num_devices.c -------------------------------------------------------------------------------- /runtime/test/api/omp_get_num_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_get_num_threads.c -------------------------------------------------------------------------------- /runtime/test/api/omp_get_wtick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_get_wtick.c -------------------------------------------------------------------------------- /runtime/test/api/omp_get_wtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_get_wtime.c -------------------------------------------------------------------------------- /runtime/test/api/omp_in_parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_in_parallel.c -------------------------------------------------------------------------------- /runtime/test/api/omp_pause_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/api/omp_pause_resource.c -------------------------------------------------------------------------------- /runtime/test/atomic/omp_atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/atomic/omp_atomic.c -------------------------------------------------------------------------------- /runtime/test/barrier/omp_barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/barrier/omp_barrier.c -------------------------------------------------------------------------------- /runtime/test/critical/omp_critical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/critical/omp_critical.c -------------------------------------------------------------------------------- /runtime/test/env/kmp_aff_disable_hwloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/env/kmp_aff_disable_hwloc.c -------------------------------------------------------------------------------- /runtime/test/env/kmp_set_dispatch_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/env/kmp_set_dispatch_buf.c -------------------------------------------------------------------------------- /runtime/test/env/omp_target_offload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/env/omp_target_offload.c -------------------------------------------------------------------------------- /runtime/test/env/omp_thread_limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/env/omp_thread_limit.c -------------------------------------------------------------------------------- /runtime/test/env/omp_wait_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/env/omp_wait_policy.c -------------------------------------------------------------------------------- /runtime/test/flush/omp_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/flush/omp_flush.c -------------------------------------------------------------------------------- /runtime/test/lit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/lit.cfg -------------------------------------------------------------------------------- /runtime/test/lit.site.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/lit.site.cfg.in -------------------------------------------------------------------------------- /runtime/test/lock/omp_init_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/lock/omp_init_lock.c -------------------------------------------------------------------------------- /runtime/test/lock/omp_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/lock/omp_lock.c -------------------------------------------------------------------------------- /runtime/test/lock/omp_nest_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/lock/omp_nest_lock.c -------------------------------------------------------------------------------- /runtime/test/lock/omp_test_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/lock/omp_test_lock.c -------------------------------------------------------------------------------- /runtime/test/lock/omp_test_nest_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/lock/omp_test_nest_lock.c -------------------------------------------------------------------------------- /runtime/test/master/omp_master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/master/omp_master.c -------------------------------------------------------------------------------- /runtime/test/master/omp_master_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/master/omp_master_3.c -------------------------------------------------------------------------------- /runtime/test/misc_bugs/cancellation_for_sections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/misc_bugs/cancellation_for_sections.c -------------------------------------------------------------------------------- /runtime/test/misc_bugs/many-microtask-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/misc_bugs/many-microtask-args.c -------------------------------------------------------------------------------- /runtime/test/misc_bugs/omp_foreign_thread_team_reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/misc_bugs/omp_foreign_thread_team_reuse.c -------------------------------------------------------------------------------- /runtime/test/misc_bugs/stack-propagate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/misc_bugs/stack-propagate.c -------------------------------------------------------------------------------- /runtime/test/misc_bugs/teams-no-par.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/misc_bugs/teams-no-par.c -------------------------------------------------------------------------------- /runtime/test/misc_bugs/teams-reduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/misc_bugs/teams-reduction.c -------------------------------------------------------------------------------- /runtime/test/omp_my_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/omp_my_sleep.h -------------------------------------------------------------------------------- /runtime/test/omp_testsuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/omp_testsuite.h -------------------------------------------------------------------------------- /runtime/test/ompt/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/callback.h -------------------------------------------------------------------------------- /runtime/test/ompt/cancel/cancel_parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/cancel/cancel_parallel.c -------------------------------------------------------------------------------- /runtime/test/ompt/cancel/cancel_taskgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/cancel/cancel_taskgroup.c -------------------------------------------------------------------------------- /runtime/test/ompt/cancel/cancel_worksharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/cancel/cancel_worksharing.c -------------------------------------------------------------------------------- /runtime/test/ompt/loadtool/tool_available/tool_available.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/loadtool/tool_available/tool_available.c -------------------------------------------------------------------------------- /runtime/test/ompt/loadtool/tool_available_search/tool_available_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/loadtool/tool_available_search/tool_available_search.c -------------------------------------------------------------------------------- /runtime/test/ompt/loadtool/tool_not_available/tool_not_available.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/loadtool/tool_not_available/tool_not_available.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/api_calls_from_other_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/api_calls_from_other_thread.cpp -------------------------------------------------------------------------------- /runtime/test/ompt/misc/api_calls_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/api_calls_misc.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/api_calls_places.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/api_calls_places.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/api_calls_without_ompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/api_calls_without_ompt.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/control_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/control_tool.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/control_tool_no_ompt_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/control_tool_no_ompt_support.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/finalize_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/finalize_tool.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/interoperability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/interoperability.cpp -------------------------------------------------------------------------------- /runtime/test/ompt/misc/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/threads.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/threads_nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/threads_nested.c -------------------------------------------------------------------------------- /runtime/test/ompt/misc/unset_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/misc/unset_callback.c -------------------------------------------------------------------------------- /runtime/test/ompt/ompt-signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/ompt-signal.h -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/dynamic_enough_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/dynamic_enough_threads.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/dynamic_not_enough_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/dynamic_not_enough_threads.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/max_active_levels_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/max_active_levels_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/nested.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/nested_lwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/nested_lwt.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/nested_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/nested_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/nested_thread_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/nested_thread_num.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/nested_threadnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/nested_threadnum.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/no_thread_num_clause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/no_thread_num_clause.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/normal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/normal.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/not_enough_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/not_enough_threads.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/parallel_if0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/parallel_if0.c -------------------------------------------------------------------------------- /runtime/test/ompt/parallel/serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/parallel/serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/barrier/explicit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/barrier/explicit.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/barrier/for_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/barrier/for_loop.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/barrier/for_simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/barrier/for_simd.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/barrier/implicit_task_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/barrier/implicit_task_data.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/barrier/parallel_region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/barrier/parallel_region.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/barrier/sections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/barrier/sections.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/barrier/single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/barrier/single.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/critical.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/critical.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/flush.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/lock.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/master.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/master.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/nest_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/nest_lock.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/ordered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/ordered.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/taskgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/taskgroup.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/taskwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/taskwait.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/test_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/test_lock.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/test_nest_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/test_nest_lock.c -------------------------------------------------------------------------------- /runtime/test/ompt/synchronization/test_nest_lock_parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/synchronization/test_nest_lock_parallel.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/dependences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/dependences.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/explicit_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/explicit_task.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/task_in_joinbarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/task_in_joinbarrier.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/task_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/task_memory.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/task_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/task_types.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/task_types_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/task_types_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/taskloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/taskloop.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/taskyield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/taskyield.c -------------------------------------------------------------------------------- /runtime/test/ompt/tasks/untied_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/tasks/untied_task.c -------------------------------------------------------------------------------- /runtime/test/ompt/teams/parallel_team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/teams/parallel_team.c -------------------------------------------------------------------------------- /runtime/test/ompt/teams/serial_teams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/teams/serial_teams.c -------------------------------------------------------------------------------- /runtime/test/ompt/teams/serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/teams/serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/teams/team.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/teams/team.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/auto.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/auto_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/auto_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/auto_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/auto_split.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/base.h -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/base_serialized.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/base_serialized.h -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/base_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/base_split.h -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/dynamic.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/dynamic_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/dynamic_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/dynamic_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/dynamic_split.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/guided.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/guided.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/guided_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/guided_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/guided_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/guided_split.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/runtime.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/runtime_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/runtime_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/runtime_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/runtime_split.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/static.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/static_serialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/static_serialized.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/for/static_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/for/static_split.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/sections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/sections.c -------------------------------------------------------------------------------- /runtime/test/ompt/worksharing/single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/ompt/worksharing/single.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_nested.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_copyin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_copyin.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_default.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_firstprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_firstprivate.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_if.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_num_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_num_threads.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_private.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_reduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_reduction.c -------------------------------------------------------------------------------- /runtime/test/parallel/omp_parallel_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/parallel/omp_parallel_shared.c -------------------------------------------------------------------------------- /runtime/test/tasking/bug_36720.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/bug_36720.c -------------------------------------------------------------------------------- /runtime/test/tasking/bug_nested_proxy_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/bug_nested_proxy_task.c -------------------------------------------------------------------------------- /runtime/test/tasking/bug_proxy_task_dep_waiting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/bug_proxy_task_dep_waiting.c -------------------------------------------------------------------------------- /runtime/test/tasking/bug_serial_taskgroup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/bug_serial_taskgroup.c -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_detach_tasks_t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_detach_tasks_t1.c -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_detach_tasks_t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_detach_tasks_t2.c -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_detach_tasks_t3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_detach_tasks_t3.c -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_task_modifier_simple_par_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_task_modifier_simple_par_new.cpp -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_task_modifier_simple_par_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_task_modifier_simple_par_old.cpp -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_task_modifier_simple_ws_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_task_modifier_simple_ws_new.cpp -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_task_modifier_simple_ws_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_task_modifier_simple_ws_old.cpp -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_task_reduction_nest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_task_reduction_nest.cpp -------------------------------------------------------------------------------- /runtime/test/tasking/kmp_taskloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/kmp_taskloop.c -------------------------------------------------------------------------------- /runtime/test/tasking/nested_parallel_tasking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/nested_parallel_tasking.c -------------------------------------------------------------------------------- /runtime/test/tasking/nested_task_creation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/nested_task_creation.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp50_task_depend_mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp50_task_depend_mtx.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp50_task_depend_mtx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp50_task_depend_mtx2.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_fill_taskqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_fill_taskqueue.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_depend_resize_hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_depend_resize_hashmap.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_final.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_final.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_firstprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_firstprivate.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_if.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_imp_firstprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_imp_firstprivate.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_priority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_priority.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_private.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_task_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_task_shared.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_taskloop_grainsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_taskloop_grainsize.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_taskloop_num_tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_taskloop_num_tasks.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_taskwait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_taskwait.c -------------------------------------------------------------------------------- /runtime/test/tasking/omp_taskyield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/tasking/omp_taskyield.c -------------------------------------------------------------------------------- /runtime/test/threadprivate/omp_threadprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/threadprivate/omp_threadprivate.c -------------------------------------------------------------------------------- /runtime/test/threadprivate/omp_threadprivate_for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/threadprivate/omp_threadprivate_for.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/bug_set_schedule_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/bug_set_schedule_0.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/kmp_doacross_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/kmp_doacross_check.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/kmp_sch_simd_guided.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/kmp_sch_simd_guided.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/kmp_sch_simd_runtime_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/kmp_sch_simd_runtime_api.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/kmp_sch_simd_runtime_guided.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/kmp_sch_simd_runtime_guided.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/kmp_sch_simd_runtime_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/kmp_sch_simd_runtime_static.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/kmp_set_dispatch_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/kmp_set_dispatch_buf.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_doacross.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_doacross.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_bigbounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_bigbounds.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_collapse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_collapse.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_firstprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_firstprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_lastprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_lastprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_nowait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_nowait.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_ordered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_ordered.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_private.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_reduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_reduction.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_schedule_auto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_schedule_auto.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_schedule_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_schedule_dynamic.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_schedule_guided.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_schedule_guided.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_schedule_runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_schedule_runtime.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_schedule_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_schedule_static.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_for_schedule_static_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_for_schedule_static_3.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_monotonic_env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_monotonic_env.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_monotonic_schedule_set_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_monotonic_schedule_set_get.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_parallel_for_firstprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_parallel_for_firstprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_parallel_for_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_parallel_for_if.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_parallel_for_lastprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_parallel_for_lastprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_parallel_for_ordered.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_parallel_for_ordered.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_parallel_for_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_parallel_for_private.c -------------------------------------------------------------------------------- /runtime/test/worksharing/for/omp_parallel_for_reduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/for/omp_parallel_for_reduction.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_parallel_sections_firstprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_parallel_sections_firstprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_parallel_sections_lastprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_parallel_sections_lastprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_parallel_sections_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_parallel_sections_private.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_parallel_sections_reduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_parallel_sections_reduction.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_section_firstprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_section_firstprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_section_lastprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_section_lastprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_section_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_section_private.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_sections_nowait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_sections_nowait.c -------------------------------------------------------------------------------- /runtime/test/worksharing/sections/omp_sections_reduction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/sections/omp_sections_reduction.c -------------------------------------------------------------------------------- /runtime/test/worksharing/single/omp_single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/single/omp_single.c -------------------------------------------------------------------------------- /runtime/test/worksharing/single/omp_single_copyprivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/single/omp_single_copyprivate.c -------------------------------------------------------------------------------- /runtime/test/worksharing/single/omp_single_nowait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/single/omp_single_nowait.c -------------------------------------------------------------------------------- /runtime/test/worksharing/single/omp_single_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/test/worksharing/single/omp_single_private.c -------------------------------------------------------------------------------- /runtime/tools/check-depends.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/check-depends.pl -------------------------------------------------------------------------------- /runtime/tools/check-execstack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/check-execstack.pl -------------------------------------------------------------------------------- /runtime/tools/check-instruction-set.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/check-instruction-set.pl -------------------------------------------------------------------------------- /runtime/tools/generate-def.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/generate-def.pl -------------------------------------------------------------------------------- /runtime/tools/lib/Build.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/lib/Build.pm -------------------------------------------------------------------------------- /runtime/tools/lib/LibOMP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/lib/LibOMP.pm -------------------------------------------------------------------------------- /runtime/tools/lib/Platform.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/lib/Platform.pm -------------------------------------------------------------------------------- /runtime/tools/lib/Uname.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/lib/Uname.pm -------------------------------------------------------------------------------- /runtime/tools/lib/tools.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/lib/tools.pm -------------------------------------------------------------------------------- /runtime/tools/message-converter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/message-converter.pl -------------------------------------------------------------------------------- /runtime/tools/summarizeStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/runtime/tools/summarizeStats.py -------------------------------------------------------------------------------- /www/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/www/README.txt -------------------------------------------------------------------------------- /www/Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/www/Reference.pdf -------------------------------------------------------------------------------- /www/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/www/content.css -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/www/index.html -------------------------------------------------------------------------------- /www/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llvm-mirror/openmp/HEAD/www/menu.css --------------------------------------------------------------------------------