├── Changes.log ├── Chap_SIMD.tex ├── Chap_affinity.tex ├── Chap_data_environment.tex ├── Chap_devices.tex ├── Chap_directives.tex ├── Chap_introduction.tex ├── Chap_loop_transformations.tex ├── Chap_memory_model.tex ├── Chap_ompt_interface.tex ├── Chap_parallel_execution.tex ├── Chap_program_control.tex ├── Chap_synchronization.tex ├── Chap_tasking.tex ├── Contributions.md ├── Deprecated_Features.tex ├── Foreword_Chapt.tex ├── History.tex ├── Makefile ├── README.md ├── SIMD ├── SIMD.tex ├── linear_modifier.tex └── sources │ ├── SIMD.1.c │ ├── SIMD.1.f90 │ ├── SIMD.2.c │ ├── SIMD.2.f90 │ ├── SIMD.3.c │ ├── SIMD.3.f90 │ ├── SIMD.4.c │ ├── SIMD.4.f90 │ ├── SIMD.5.c │ ├── SIMD.5.f90 │ ├── SIMD.6.c │ ├── SIMD.6.f90 │ ├── SIMD.7.c │ ├── SIMD.7.f90 │ ├── SIMD.8.c │ ├── SIMD.8.f90 │ ├── linear_modifier.1.cpp │ ├── linear_modifier.1.f90 │ ├── linear_modifier.2.cpp │ ├── linear_modifier.2.f90 │ ├── linear_modifier.3.c │ └── linear_modifier.3.f90 ├── STYLE_GUIDE.md ├── Title_Page.tex ├── affinity ├── affinity.tex ├── affinity_display.tex ├── affinity_query.tex ├── sources │ ├── affinity.1.c │ ├── affinity.1.f │ ├── affinity.2.c │ ├── affinity.2.f90 │ ├── affinity.3.c │ ├── affinity.3.f │ ├── affinity.4.c │ ├── affinity.4.f90 │ ├── affinity.5.c │ ├── affinity.5.f │ ├── affinity.6.c │ ├── affinity.6.f90 │ ├── affinity_control.1.c │ ├── affinity_control.1.f90 │ ├── affinity_display.1.c │ ├── affinity_display.1.f90 │ ├── affinity_display.2.c │ ├── affinity_display.2.f90 │ ├── affinity_display.3.c │ ├── affinity_display.3.f90 │ ├── affinity_query.1.c │ └── affinity_query.1.f90 └── task_affinity.tex ├── data_environment ├── associate.tex ├── carrays_fpriv.tex ├── copyin.tex ├── copyprivate.tex ├── cpp_reference.tex ├── default_none.tex ├── fort_loopvar.tex ├── fort_sa_private.tex ├── fort_shared_var.tex ├── fort_sp_common.tex ├── groupprivate.tex ├── induction.tex ├── lastprivate.tex ├── private.tex ├── reduction.tex ├── scan.tex ├── sources │ ├── associate.1.f │ ├── associate.2.f │ ├── associate.3.f90 │ ├── associate.4.f90 │ ├── carrays_fpriv.1.c │ ├── copyin.1.c │ ├── copyin.1.f │ ├── copyprivate.1.c │ ├── copyprivate.1.f │ ├── copyprivate.2.c │ ├── copyprivate.2.f │ ├── copyprivate.3.c │ ├── copyprivate.3.f │ ├── copyprivate.4.f │ ├── cpp_reference.1.cpp │ ├── default_none.1.c │ ├── default_none.1.f │ ├── fort_loopvar.1.f90 │ ├── fort_loopvar.2.f90 │ ├── fort_sa_private.1.f │ ├── fort_sa_private.2.f │ ├── fort_sa_private.3.f │ ├── fort_sa_private.4.f │ ├── fort_sa_private.5.f │ ├── fort_shared_var.1.f90 │ ├── fort_sp_common.1.f │ ├── fort_sp_common.2.f │ ├── fort_sp_common.3.f │ ├── fort_sp_common.4.f │ ├── fort_sp_common.5.f │ ├── groupprivate.1.cpp │ ├── groupprivate.1.f90 │ ├── induction.1.c │ ├── induction.1.f90 │ ├── induction.2.cpp │ ├── induction.2.f90 │ ├── lastprivate.1.c │ ├── lastprivate.1.f │ ├── lastprivate.2.c │ ├── lastprivate.2.f90 │ ├── priv_reduction.1.c │ ├── priv_reduction.1.f90 │ ├── priv_reduction.2.cpp │ ├── priv_reduction.2.f90 │ ├── priv_reduction.3.c │ ├── priv_reduction.3.f90 │ ├── private.1.c │ ├── private.1.f │ ├── private.2.c │ ├── private.2.f │ ├── private.3.c │ ├── private.3.f │ ├── reduction.1.c │ ├── reduction.1.f90 │ ├── reduction.2.c │ ├── reduction.2.f90 │ ├── reduction.3.f90 │ ├── reduction.4.f90 │ ├── reduction.5.f90 │ ├── reduction.6.c │ ├── reduction.6.f │ ├── reduction.7.c │ ├── reduction.7.f90 │ ├── scan.1.c │ ├── scan.1.f90 │ ├── scan.2.c │ ├── scan.2.f90 │ ├── scan.3.c │ ├── scan.3.f90 │ ├── scope_reduction.1.cpp │ ├── scope_reduction.1.f90 │ ├── target_reduction.1.c │ ├── target_reduction.1.f90 │ ├── target_reduction.2.c │ ├── target_reduction.2.f90 │ ├── target_task_reduction.1.c │ ├── target_task_reduction.1.f90 │ ├── target_task_reduction.2a.c │ ├── target_task_reduction.2a.f90 │ ├── target_task_reduction.2b.c │ ├── target_task_reduction.2b.f90 │ ├── task_reduction.1.c │ ├── task_reduction.1.f90 │ ├── task_reduction.2.c │ ├── task_reduction.2.f90 │ ├── taskloop_reduction.1.c │ ├── taskloop_reduction.1.f90 │ ├── taskloop_reduction.2.c │ ├── taskloop_reduction.2.f90 │ ├── taskloop_simd_reduction.1.c │ ├── taskloop_simd_reduction.1.f90 │ ├── threadprivate.1.c │ ├── threadprivate.1.f │ ├── threadprivate.2.c │ ├── threadprivate.2.f │ ├── threadprivate.3.cpp │ ├── threadprivate.3.f │ ├── threadprivate.4.cpp │ ├── threadprivate.4.f │ ├── threadprivate.5.cpp │ ├── threadprivate.5.f │ ├── threadprivate.6.f │ ├── udr.1.c │ ├── udr.1.f90 │ ├── udr.2.c │ ├── udr.2.f90 │ ├── udr.3.c │ ├── udr.3.f90 │ ├── udr.4.f90 │ ├── udr.5.cpp │ └── udr.6.cpp ├── threadprivate.tex └── udr.tex ├── devices ├── C++_virtual_functions.tex ├── array_sections.tex ├── array_shaping.tex ├── async_target_depend.tex ├── async_target_nowait.tex ├── async_target_nowait_arg.tex ├── async_target_nowait_depend.tex ├── async_target_with_tasks.tex ├── declare_target.tex ├── device.tex ├── device_env_traits.tex ├── lambda_expressions.tex ├── self_mapping.tex ├── sources │ ├── array_sections.1.c │ ├── array_sections.1.f90 │ ├── array_sections.2.c │ ├── array_sections.2.f90 │ ├── array_sections.3.c │ ├── array_sections.3.f90 │ ├── array_sections.4.c │ ├── array_sections.4.f90 │ ├── array_shaping.1.c │ ├── array_shaping.1.f90 │ ├── async_target.1.c │ ├── async_target.1.f90 │ ├── async_target.2.c │ ├── async_target.2.f90 │ ├── async_target.3.c │ ├── async_target.3.f90 │ ├── async_target.4.c │ ├── async_target.4.f90 │ ├── async_target.5.c │ ├── async_target.5.f90 │ ├── declare_target.1.c │ ├── declare_target.1.f90 │ ├── declare_target.2.f90 │ ├── declare_target.2a.cpp │ ├── declare_target.2b_classes.hpp │ ├── declare_target.2b_functions.cpp │ ├── declare_target.2b_main.cpp │ ├── declare_target.2c.cpp │ ├── declare_target.3.c │ ├── declare_target.3.f90 │ ├── declare_target.4.c │ ├── declare_target.4.f90 │ ├── declare_target.5.c │ ├── declare_target.5.f90 │ ├── declare_target.6.c │ ├── declare_target.6.f90 │ ├── declare_target.7.c │ ├── declare_target.7.f90 │ ├── declare_target.8.c │ ├── declare_target.8.f90 │ ├── declare_target_indirect_call.1.c │ ├── declare_target_indirect_call.1.f90 │ ├── device.1.c │ ├── device.1.f90 │ ├── device.2.c │ ├── device.2.f90 │ ├── device.3.c │ ├── device.3.f90 │ ├── device.4.c │ ├── device.4.f90 │ ├── device.5.c │ ├── device.5.f90 │ ├── device.6.c │ ├── device.6.f90 │ ├── lambda_expressions.1.cpp │ ├── self_map.1.c │ ├── self_map.2.cpp │ ├── self_map.2.f90 │ ├── self_map.3.c │ ├── self_map.3.f90 │ ├── target.1.c │ ├── target.1.f90 │ ├── target.2.c │ ├── target.2.f90 │ ├── target.3.c │ ├── target.3.f90 │ ├── target.4.c │ ├── target.4.f90 │ ├── target.4b.f90 │ ├── target.5.c │ ├── target.5.f90 │ ├── target.6.c │ ├── target.6.f90 │ ├── target_associate_ptr.1.c │ ├── target_associate_ptr.1.f90 │ ├── target_data.1.c │ ├── target_data.1.f90 │ ├── target_data.2.c │ ├── target_data.2.f90 │ ├── target_data.3.c │ ├── target_data.3.f90 │ ├── target_data.4.c │ ├── target_data.4.f90 │ ├── target_data.5.cpp │ ├── target_data.5.f90 │ ├── target_data.6.c │ ├── target_data.6.f90 │ ├── target_data.7.c │ ├── target_data.7.f90 │ ├── target_data_semantics_new.1.c │ ├── target_data_semantics_new.1.f90 │ ├── target_defaultmap.1.c │ ├── target_defaultmap.1.f90 │ ├── target_fort_allocatable_map.1.f90 │ ├── target_fort_allocatable_map.2.f90 │ ├── target_fort_allocatable_map.3.f90 │ ├── target_mapper.1.c │ ├── target_mapper.1.f90 │ ├── target_mapper.2.c │ ├── target_mapper.2.f90 │ ├── target_mapper.3.c │ ├── target_mapper.3.f90 │ ├── target_ptr_map.1.c │ ├── target_ptr_map.2.c │ ├── target_ptr_map.3a.c │ ├── target_ptr_map.3b.c │ ├── target_ptr_map.4.c │ ├── target_ptr_map.5.c │ ├── target_ptr_map.5.f90 │ ├── target_reverse_offload.7.c │ ├── target_reverse_offload.7.f90 │ ├── target_struct_map.1.c │ ├── target_struct_map.2.cpp │ ├── target_struct_map.3.c │ ├── target_struct_map.4.c │ ├── target_teams_workdistribute.1.f90 │ ├── target_teams_workdistribute.2.f90 │ ├── target_teams_workdistribute.3.f90 │ ├── target_unstructured_data.1.c │ ├── target_unstructured_data.1.cpp │ ├── target_unstructured_data.1.f90 │ ├── target_update.1.c │ ├── target_update.1.f90 │ ├── target_update.2.c │ ├── target_update.2.f90 │ ├── target_update.3.c │ ├── target_update.3.f90 │ ├── teams.1.c │ ├── teams.1.f90 │ ├── teams.2.c │ ├── teams.2.f90 │ ├── teams.3.c │ ├── teams.3.f90 │ ├── teams.4.c │ ├── teams.4.f90 │ ├── teams.5.c │ ├── teams.5.f90 │ ├── teams.6.c │ ├── teams.6.f90 │ ├── teams.7.c │ ├── teams.7.f90 │ ├── usm_scalar_ptr_ref_asc.1.cpp │ ├── usm_scalar_ptr_ref_asc.1.f90 │ ├── virtual_functions.1.cpp │ └── virtual_functions.2.cpp ├── target.tex ├── target_associate_ptr.tex ├── target_data.tex ├── target_defaultmap.tex ├── target_fort_allocatable_array_mapping.tex ├── target_mapper.tex ├── target_pointer_mapping.tex ├── target_structure_mapping.tex ├── target_teams_workdistribute.tex ├── target_unstructured_data.tex ├── target_update.tex ├── teams.tex └── usm.tex ├── directives ├── attributes.tex ├── compound_directive_names.tex ├── fixed_format_comments.tex ├── free_format_comments.tex ├── pragmas.tex └── sources │ ├── compound_names.1.c │ ├── compound_names.1.f90 │ ├── directive_name_modifier.1.c │ ├── directive_name_modifier.1.f90 │ ├── directive_syntax_F_block.1.f90 │ ├── directive_syntax_F_block.2.f90 │ ├── directive_syntax_F_fixed_comment.1.f │ ├── directive_syntax_F_free_comment.1.f90 │ ├── directive_syntax_attribute.1.cpp │ ├── directive_syntax_attribute.2.cpp │ ├── directive_syntax_pragma.1.c │ ├── invalid_compound_names.1.c │ └── invalid_compound_names.1.f90 ├── figs ├── close_policy.pdf ├── primary_policy.pdf ├── proc_bind_fig.pdf ├── proc_bind_fig.png ├── spread_policy.pdf ├── stripe-1d_striping.pdf ├── stripe-1d_striping.tex ├── stripe-2d_tiling.pdf ├── stripe-2d_tiling.tex ├── tile-2d_tiling.pdf ├── tile-2d_tiling.tex ├── tile-Example_tile2.pdf └── tile-Example_tile2.tex ├── generated-include.tex ├── introduction └── Examples.tex ├── latexdiff.cfg ├── loop_transformations ├── apply.tex ├── fuse.tex ├── partial_tile.tex ├── sources │ ├── apply_nested.1.c │ ├── apply_nested.1.f90 │ ├── apply_nested_equivalent.1.c │ ├── apply_nested_equivalent.1.f90 │ ├── apply_span.1.c │ ├── apply_span.1.f90 │ ├── apply_span_equivalent.1.c │ ├── apply_span_equivalent.1.f90 │ ├── apply_split.1.c │ ├── apply_split.1.f90 │ ├── apply_split.2.c │ ├── apply_split.2.f90 │ ├── apply_syntax.1.c │ ├── apply_syntax.1.f90 │ ├── apply_syntax.2.c │ ├── apply_syntax.2.f90 │ ├── apply_syntax.3.c │ ├── apply_syntax.3.f90 │ ├── apply_syntax_equivalent.1.c │ ├── apply_syntax_equivalent.1.f90 │ ├── apply_syntax_equivalent.2.c │ ├── apply_syntax_equivalent.2.f90 │ ├── apply_syntax_equivalent.3.c │ ├── apply_syntax_equivalent.3.f90 │ ├── fuse.1.c │ ├── fuse.1.f90 │ ├── fuse.2.c │ ├── fuse.2.f90 │ ├── fuse.3.c │ ├── fuse.3.f90 │ ├── partial_tile.1.c │ ├── partial_tile.1.f90 │ ├── partial_tile.2.c │ ├── partial_tile.2.f90 │ ├── split.1.c │ ├── split.1.f90 │ ├── split.2.c │ ├── split.2.f90 │ ├── stripe.1.c │ ├── stripe.1.f90 │ ├── stripe.2.c │ ├── stripe.2.f90 │ ├── tile.1.c │ ├── tile.1.f90 │ ├── tile.2.c │ ├── tile.2.f90 │ ├── unroll.1.c │ ├── unroll.1.f90 │ ├── unroll.2.c │ ├── unroll.2.f90 │ ├── unroll.3.c │ ├── unroll.3.f90 │ ├── unroll.4.c │ └── unroll.4.f90 ├── split.tex ├── stripe.tex ├── tile.tex └── unroll.tex ├── memory_model ├── allocators.tex ├── fort_race.tex ├── mem_model.tex └── sources │ ├── allocators.1.c │ ├── allocators.1.f90 │ ├── allocators.2.f90 │ ├── allocators.3.f90 │ ├── allocators.4.c │ ├── allocators.4.f90 │ ├── allocators.5.c │ ├── allocators.5.f90 │ ├── allocators.6.c │ ├── allocators.6.f90 │ ├── fort_race.1.f90 │ ├── mem_model.1.c │ ├── mem_model.1.f90 │ ├── mem_model.2.c │ ├── mem_model.2.f │ ├── mem_model.3.c │ ├── mem_model.3.f │ ├── mem_model.4a.c │ ├── mem_model.4a.f90 │ ├── mem_model.4b.c │ └── mem_model.4b.f90 ├── omp_copyright.txt ├── ompt_interface ├── ompt_start.tex └── sources │ └── ompt_start.1.c ├── openmp-examples.tex ├── openmp-index.ist ├── openmp-logo.png ├── openmp.sty ├── parallel_execution ├── collapse.tex ├── fort_do.tex ├── fpriv_sections.tex ├── get_nthrs.tex ├── host_teams.tex ├── linear_in_loop.tex ├── loop.tex ├── masked.tex ├── nowait.tex ├── nthrs_dynamic.tex ├── nthrs_nesting.tex ├── parallel.tex ├── ploop.tex ├── pra_iterator.tex ├── psections.tex ├── set_dynamic_nthrs.tex ├── single.tex ├── sources │ ├── collapse.1.c │ ├── collapse.1.f │ ├── collapse.2.c │ ├── collapse.2.f │ ├── collapse.3.c │ ├── collapse.3.f │ ├── collapse.4.c │ ├── collapse.4.f90 │ ├── fort_do.1.f │ ├── fort_do.2.f │ ├── fpriv_sections.1.c │ ├── fpriv_sections.1.f90 │ ├── get_nthrs.1.c │ ├── get_nthrs.1.f │ ├── get_nthrs.2.c │ ├── get_nthrs.2.f │ ├── host_teams.1.c │ ├── host_teams.1.f90 │ ├── linear_in_loop.1.c │ ├── linear_in_loop.1.f90 │ ├── loop.1.c │ ├── loop.1.f90 │ ├── loop.2.c │ ├── loop.2.f90 │ ├── masked.1.c │ ├── masked.1.f │ ├── nowait.1.c │ ├── nowait.1.f │ ├── nowait.2.c │ ├── nowait.2.f90 │ ├── nthrs_dynamic.1.c │ ├── nthrs_dynamic.1.f │ ├── nthrs_dynamic.2.c │ ├── nthrs_dynamic.2.f │ ├── nthrs_nesting.1.c │ ├── nthrs_nesting.1.f │ ├── parallel.1.c │ ├── parallel.1.f │ ├── ploop.1.c │ ├── ploop.1.f │ ├── pra_iterator.1.cpp │ ├── psections.1.c │ ├── psections.1.f │ ├── set_dynamic_nthrs.1.c │ ├── set_dynamic_nthrs.1.f │ ├── single.1.c │ ├── single.1.f │ ├── workshare.1.f │ ├── workshare.2.f │ ├── workshare.3.f │ ├── workshare.4.f │ ├── workshare.5.f │ ├── workshare.6.f │ └── workshare.7.f └── workshare.tex ├── program_control ├── assumption.tex ├── cancellation.tex ├── cond_comp.tex ├── context_based_variants.tex ├── dispatch.tex ├── icv.tex ├── interop.tex ├── nested_loop.tex ├── nesting_restrict.tex ├── pause_resource.tex ├── reproducible.tex ├── requires.tex ├── sources │ ├── assumption.1.c │ ├── assumption.1.f90 │ ├── assumption.2.c │ ├── assumption.2.f90 │ ├── cancellation.1.cpp │ ├── cancellation.1.f90 │ ├── cancellation.2.c │ ├── cancellation.2.f90 │ ├── cond_comp.1.c │ ├── cond_comp.1.f │ ├── declare_variant.1.c │ ├── declare_variant.1.f90 │ ├── declare_variant.2.c │ ├── declare_variant.2.f90 │ ├── declare_variant.3.c │ ├── dispatch.1.c │ ├── dispatch.1.f90 │ ├── display_env.1.c │ ├── display_env.1.f90 │ ├── error.1.c │ ├── error.1.f90 │ ├── get_wtime.1.c │ ├── get_wtime.1.f90 │ ├── icv.1.c │ ├── icv.1.f │ ├── icv.2.c │ ├── icv.2.f90 │ ├── interop.1.c │ ├── metadirective.1.c │ ├── metadirective.1.f90 │ ├── metadirective.2.c │ ├── metadirective.2.f90 │ ├── metadirective.3.c │ ├── metadirective.3.f90 │ ├── metadirective.3a.c │ ├── metadirective.3a.f90 │ ├── metadirective.3b.c │ ├── metadirective.3b.h │ ├── metadirective.4.c │ ├── metadirective.4.f90 │ ├── metadirective.5.cpp │ ├── nested_loop.1.c │ ├── nested_loop.1.f │ ├── nested_loop.2.c │ ├── nested_loop.2.f │ ├── nesting_restrict.1.c │ ├── nesting_restrict.1.f │ ├── nesting_restrict.2.c │ ├── nesting_restrict.2.f │ ├── nesting_restrict.3.c │ ├── nesting_restrict.3.f │ ├── nesting_restrict.4.c │ ├── nesting_restrict.4.f │ ├── nesting_restrict.5.c │ ├── nesting_restrict.5.f │ ├── nesting_restrict.6.c │ ├── nesting_restrict.6.f │ ├── pause_resource.1.c │ ├── pause_resource.2a.f90 │ ├── pause_resource.2b.f90 │ ├── reproducible.1.c │ ├── reproducible.1.f90 │ ├── reproducible.2.c │ ├── reproducible.2.f90 │ ├── requires.1.cpp │ ├── requires.1.f90 │ ├── selector_scoring.1.c │ ├── selector_scoring.1.f90 │ ├── selector_scoring.2.c │ ├── selector_scoring.2.f90 │ ├── standalone.1.c │ ├── standalone.1.f90 │ ├── standalone.2.c │ ├── standalone.2.f90 │ ├── target_offload_control.1.c │ └── target_offload_control.1.f90 ├── standalone.tex ├── target_offload.tex └── utilities.tex ├── sources ├── README ├── check_tags ├── eval_codes ├── eval_utils ├── run_code └── sourceme ├── synchronization ├── acquire_release.tex ├── atomic.tex ├── atomic_cas.tex ├── atomic_hint.tex ├── atomic_restrict.tex ├── barrier_regions.tex ├── critical.tex ├── depobj.tex ├── doacross.tex ├── init_lock.tex ├── init_lock_with_hint.tex ├── lock_owner.tex ├── locks.tex ├── nestable_lock.tex ├── ordered.tex ├── safesync.tex ├── simple_lock.tex ├── sources │ ├── acquire_release.1.c │ ├── acquire_release.1.f90 │ ├── acquire_release.2.c │ ├── acquire_release.2.f90 │ ├── acquire_release.3.c │ ├── acquire_release.3.f90 │ ├── acquire_release_broke.4.c │ ├── acquire_release_broke.4.f90 │ ├── atomic.1.c │ ├── atomic.1.f │ ├── atomic.2.c │ ├── atomic.2.f │ ├── atomic.3.c │ ├── atomic.3.f │ ├── atomic.4.c │ ├── atomic.4.f90 │ ├── atomic_restrict.1.c │ ├── atomic_restrict.1.f │ ├── atomic_restrict.2.c │ ├── atomic_restrict.2.f │ ├── atomic_restrict.3.f │ ├── barrier_regions.1.c │ ├── barrier_regions.1.f │ ├── cas.1.c │ ├── cas.1.f90 │ ├── cas.2.c │ ├── cas.2.f90 │ ├── critical.1.c │ ├── critical.1.f │ ├── critical.2.c │ ├── critical.2.f │ ├── depobj.1.c │ ├── depobj.1.f90 │ ├── doacross.1.c │ ├── doacross.1.f90 │ ├── doacross.2.c │ ├── doacross.2.f90 │ ├── doacross.3.c │ ├── doacross.3.f90 │ ├── doacross.4.c │ ├── doacross.4.f90 │ ├── init_lock.1.cpp │ ├── init_lock.1.f │ ├── init_lock_with_hint.1.cpp │ ├── init_lock_with_hint.1.f │ ├── lock_owner.1.c │ ├── lock_owner.1.f │ ├── nestable_lock.1.c │ ├── nestable_lock.1.f │ ├── ordered.1.c │ ├── ordered.1.f │ ├── ordered.2.c │ ├── ordered.2.f │ ├── ordered.3.c │ ├── ordered.3.f │ ├── safesync.1.c │ ├── safesync.1.f90 │ ├── simple_lock.1.c │ ├── simple_lock.1.f │ ├── worksharing_critical.1.c │ └── worksharing_critical.1.f └── worksharing_critical.tex ├── tasking ├── free_agent.tex ├── parallel_masked_taskloop.tex ├── sources │ ├── free_agent.1.c │ ├── free_agent.1.f90 │ ├── free_agent.2.c │ ├── free_agent.2.f90 │ ├── free_agent.3.c │ ├── free_agent.3.f90 │ ├── parallel_masked_taskloop.1.c │ ├── parallel_masked_taskloop.1.f90 │ ├── task_dep.1.c │ ├── task_dep.1.f90 │ ├── task_dep.10.c │ ├── task_dep.10.f90 │ ├── task_dep.11.c │ ├── task_dep.11.f90 │ ├── task_dep.12.c │ ├── task_dep.12.f90 │ ├── task_dep.13.c │ ├── task_dep.13.f90 │ ├── task_dep.14.c │ ├── task_dep.14.f90 │ ├── task_dep.15.c │ ├── task_dep.15.f90 │ ├── task_dep.2.c │ ├── task_dep.2.f90 │ ├── task_dep.3.c │ ├── task_dep.3.f90 │ ├── task_dep.4.c │ ├── task_dep.4.f90 │ ├── task_dep.4b.c │ ├── task_dep.4b.f90 │ ├── task_dep.5.c │ ├── task_dep.5.f90 │ ├── task_dep.6.c │ ├── task_dep.6.f90 │ ├── task_dep.7.c │ ├── task_dep.7.f90 │ ├── task_dep.8.c │ ├── task_dep.8.f90 │ ├── task_dep.9.c │ ├── task_dep.9.f90 │ ├── task_detach.1.c │ ├── task_detach.1.f90 │ ├── task_detach.2.c │ ├── task_priority.1.c │ ├── task_priority.1.f90 │ ├── taskgraph.1.c │ ├── taskgraph.1.f90 │ ├── taskgraph.2.c │ ├── taskgraph.2.f90 │ ├── taskgraph.3.c │ ├── taskgraph.3.f90 │ ├── taskgraph.4.c │ ├── taskgraph.4.f90 │ ├── taskgraph.5.c │ ├── taskgraph.5.f90 │ ├── taskgroup.1.c │ ├── taskgroup.1.f90 │ ├── tasking.1.c │ ├── tasking.1.f90 │ ├── tasking.10.c │ ├── tasking.10.f90 │ ├── tasking.11.c │ ├── tasking.11.f90 │ ├── tasking.12.c │ ├── tasking.12.f90 │ ├── tasking.13.c │ ├── tasking.13.f90 │ ├── tasking.14.c │ ├── tasking.14.f90 │ ├── tasking.2.c │ ├── tasking.2.f90 │ ├── tasking.3.c │ ├── tasking.3.f90 │ ├── tasking.4.c │ ├── tasking.4.f │ ├── tasking.5.c │ ├── tasking.5.f │ ├── tasking.6.c │ ├── tasking.6.f │ ├── tasking.7.c │ ├── tasking.7.f │ ├── tasking.8.c │ ├── tasking.8.f │ ├── tasking.9.c │ ├── tasking.9.f │ ├── taskloop.1.c │ ├── taskloop.1.f90 │ ├── taskloop.2.c │ ├── taskloop.2.f90 │ ├── taskloop_dep.1.c │ ├── taskloop_dep.1.f90 │ ├── taskloop_dep.2.c │ ├── taskloop_dep.2.f90 │ ├── taskyield.1.c │ └── taskyield.1.f90 ├── task_dep.tex ├── task_detach.tex ├── task_priority.tex ├── taskgraph.tex ├── taskgroup.tex ├── tasking.tex ├── taskloop.tex ├── taskloop_dep.tex └── taskyield.tex ├── util ├── Makefile ├── README ├── chk_tags.c ├── cvt_fixed ├── gen_tags ├── latexdiff │ ├── VERSION │ ├── latexdiff │ ├── latexdiff-fast │ └── latexdiff-vc └── list_tags └── versioninfo /Changes.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Changes.log -------------------------------------------------------------------------------- /Chap_SIMD.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_SIMD.tex -------------------------------------------------------------------------------- /Chap_affinity.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_affinity.tex -------------------------------------------------------------------------------- /Chap_data_environment.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_data_environment.tex -------------------------------------------------------------------------------- /Chap_devices.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_devices.tex -------------------------------------------------------------------------------- /Chap_directives.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_directives.tex -------------------------------------------------------------------------------- /Chap_introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_introduction.tex -------------------------------------------------------------------------------- /Chap_loop_transformations.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_loop_transformations.tex -------------------------------------------------------------------------------- /Chap_memory_model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_memory_model.tex -------------------------------------------------------------------------------- /Chap_ompt_interface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_ompt_interface.tex -------------------------------------------------------------------------------- /Chap_parallel_execution.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_parallel_execution.tex -------------------------------------------------------------------------------- /Chap_program_control.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_program_control.tex -------------------------------------------------------------------------------- /Chap_synchronization.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_synchronization.tex -------------------------------------------------------------------------------- /Chap_tasking.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Chap_tasking.tex -------------------------------------------------------------------------------- /Contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Contributions.md -------------------------------------------------------------------------------- /Deprecated_Features.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Deprecated_Features.tex -------------------------------------------------------------------------------- /Foreword_Chapt.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Foreword_Chapt.tex -------------------------------------------------------------------------------- /History.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/History.tex -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/README.md -------------------------------------------------------------------------------- /SIMD/SIMD.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/SIMD.tex -------------------------------------------------------------------------------- /SIMD/linear_modifier.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/linear_modifier.tex -------------------------------------------------------------------------------- /SIMD/sources/SIMD.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.1.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.1.f90 -------------------------------------------------------------------------------- /SIMD/sources/SIMD.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.2.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.2.f90 -------------------------------------------------------------------------------- /SIMD/sources/SIMD.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.3.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.3.f90 -------------------------------------------------------------------------------- /SIMD/sources/SIMD.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.4.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.4.f90 -------------------------------------------------------------------------------- /SIMD/sources/SIMD.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.5.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.5.f90 -------------------------------------------------------------------------------- /SIMD/sources/SIMD.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.6.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.6.f90 -------------------------------------------------------------------------------- /SIMD/sources/SIMD.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.7.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.7.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.7.f90 -------------------------------------------------------------------------------- /SIMD/sources/SIMD.8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.8.c -------------------------------------------------------------------------------- /SIMD/sources/SIMD.8.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/SIMD.8.f90 -------------------------------------------------------------------------------- /SIMD/sources/linear_modifier.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/linear_modifier.1.cpp -------------------------------------------------------------------------------- /SIMD/sources/linear_modifier.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/linear_modifier.1.f90 -------------------------------------------------------------------------------- /SIMD/sources/linear_modifier.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/linear_modifier.2.cpp -------------------------------------------------------------------------------- /SIMD/sources/linear_modifier.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/linear_modifier.2.f90 -------------------------------------------------------------------------------- /SIMD/sources/linear_modifier.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/linear_modifier.3.c -------------------------------------------------------------------------------- /SIMD/sources/linear_modifier.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/SIMD/sources/linear_modifier.3.f90 -------------------------------------------------------------------------------- /STYLE_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/STYLE_GUIDE.md -------------------------------------------------------------------------------- /Title_Page.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/Title_Page.tex -------------------------------------------------------------------------------- /affinity/affinity.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/affinity.tex -------------------------------------------------------------------------------- /affinity/affinity_display.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/affinity_display.tex -------------------------------------------------------------------------------- /affinity/affinity_query.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/affinity_query.tex -------------------------------------------------------------------------------- /affinity/sources/affinity.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.1.c -------------------------------------------------------------------------------- /affinity/sources/affinity.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.1.f -------------------------------------------------------------------------------- /affinity/sources/affinity.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.2.c -------------------------------------------------------------------------------- /affinity/sources/affinity.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.2.f90 -------------------------------------------------------------------------------- /affinity/sources/affinity.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.3.c -------------------------------------------------------------------------------- /affinity/sources/affinity.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.3.f -------------------------------------------------------------------------------- /affinity/sources/affinity.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.4.c -------------------------------------------------------------------------------- /affinity/sources/affinity.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.4.f90 -------------------------------------------------------------------------------- /affinity/sources/affinity.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.5.c -------------------------------------------------------------------------------- /affinity/sources/affinity.5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.5.f -------------------------------------------------------------------------------- /affinity/sources/affinity.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.6.c -------------------------------------------------------------------------------- /affinity/sources/affinity.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity.6.f90 -------------------------------------------------------------------------------- /affinity/sources/affinity_control.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_control.1.c -------------------------------------------------------------------------------- /affinity/sources/affinity_control.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_control.1.f90 -------------------------------------------------------------------------------- /affinity/sources/affinity_display.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_display.1.c -------------------------------------------------------------------------------- /affinity/sources/affinity_display.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_display.1.f90 -------------------------------------------------------------------------------- /affinity/sources/affinity_display.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_display.2.c -------------------------------------------------------------------------------- /affinity/sources/affinity_display.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_display.2.f90 -------------------------------------------------------------------------------- /affinity/sources/affinity_display.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_display.3.c -------------------------------------------------------------------------------- /affinity/sources/affinity_display.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_display.3.f90 -------------------------------------------------------------------------------- /affinity/sources/affinity_query.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_query.1.c -------------------------------------------------------------------------------- /affinity/sources/affinity_query.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/sources/affinity_query.1.f90 -------------------------------------------------------------------------------- /affinity/task_affinity.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/affinity/task_affinity.tex -------------------------------------------------------------------------------- /data_environment/associate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/associate.tex -------------------------------------------------------------------------------- /data_environment/carrays_fpriv.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/carrays_fpriv.tex -------------------------------------------------------------------------------- /data_environment/copyin.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/copyin.tex -------------------------------------------------------------------------------- /data_environment/copyprivate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/copyprivate.tex -------------------------------------------------------------------------------- /data_environment/cpp_reference.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/cpp_reference.tex -------------------------------------------------------------------------------- /data_environment/default_none.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/default_none.tex -------------------------------------------------------------------------------- /data_environment/fort_loopvar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/fort_loopvar.tex -------------------------------------------------------------------------------- /data_environment/fort_sa_private.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/fort_sa_private.tex -------------------------------------------------------------------------------- /data_environment/fort_shared_var.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/fort_shared_var.tex -------------------------------------------------------------------------------- /data_environment/fort_sp_common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/fort_sp_common.tex -------------------------------------------------------------------------------- /data_environment/groupprivate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/groupprivate.tex -------------------------------------------------------------------------------- /data_environment/induction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/induction.tex -------------------------------------------------------------------------------- /data_environment/lastprivate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/lastprivate.tex -------------------------------------------------------------------------------- /data_environment/private.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/private.tex -------------------------------------------------------------------------------- /data_environment/reduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/reduction.tex -------------------------------------------------------------------------------- /data_environment/scan.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/scan.tex -------------------------------------------------------------------------------- /data_environment/sources/associate.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/associate.1.f -------------------------------------------------------------------------------- /data_environment/sources/associate.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/associate.2.f -------------------------------------------------------------------------------- /data_environment/sources/associate.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/associate.3.f90 -------------------------------------------------------------------------------- /data_environment/sources/associate.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/associate.4.f90 -------------------------------------------------------------------------------- /data_environment/sources/carrays_fpriv.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/carrays_fpriv.1.c -------------------------------------------------------------------------------- /data_environment/sources/copyin.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyin.1.c -------------------------------------------------------------------------------- /data_environment/sources/copyin.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyin.1.f -------------------------------------------------------------------------------- /data_environment/sources/copyprivate.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyprivate.1.c -------------------------------------------------------------------------------- /data_environment/sources/copyprivate.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyprivate.1.f -------------------------------------------------------------------------------- /data_environment/sources/copyprivate.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyprivate.2.c -------------------------------------------------------------------------------- /data_environment/sources/copyprivate.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyprivate.2.f -------------------------------------------------------------------------------- /data_environment/sources/copyprivate.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyprivate.3.c -------------------------------------------------------------------------------- /data_environment/sources/copyprivate.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyprivate.3.f -------------------------------------------------------------------------------- /data_environment/sources/copyprivate.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/copyprivate.4.f -------------------------------------------------------------------------------- /data_environment/sources/cpp_reference.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/cpp_reference.1.cpp -------------------------------------------------------------------------------- /data_environment/sources/default_none.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/default_none.1.c -------------------------------------------------------------------------------- /data_environment/sources/default_none.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/default_none.1.f -------------------------------------------------------------------------------- /data_environment/sources/fort_loopvar.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_loopvar.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/fort_loopvar.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_loopvar.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/fort_sa_private.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sa_private.1.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sa_private.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sa_private.2.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sa_private.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sa_private.3.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sa_private.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sa_private.4.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sa_private.5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sa_private.5.f -------------------------------------------------------------------------------- /data_environment/sources/fort_shared_var.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_shared_var.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/fort_sp_common.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sp_common.1.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sp_common.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sp_common.2.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sp_common.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sp_common.3.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sp_common.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sp_common.4.f -------------------------------------------------------------------------------- /data_environment/sources/fort_sp_common.5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/fort_sp_common.5.f -------------------------------------------------------------------------------- /data_environment/sources/groupprivate.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/groupprivate.1.cpp -------------------------------------------------------------------------------- /data_environment/sources/groupprivate.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/groupprivate.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/induction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/induction.1.c -------------------------------------------------------------------------------- /data_environment/sources/induction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/induction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/induction.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/induction.2.cpp -------------------------------------------------------------------------------- /data_environment/sources/induction.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/induction.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/lastprivate.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/lastprivate.1.c -------------------------------------------------------------------------------- /data_environment/sources/lastprivate.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/lastprivate.1.f -------------------------------------------------------------------------------- /data_environment/sources/lastprivate.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/lastprivate.2.c -------------------------------------------------------------------------------- /data_environment/sources/lastprivate.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/lastprivate.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/priv_reduction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/priv_reduction.1.c -------------------------------------------------------------------------------- /data_environment/sources/priv_reduction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/priv_reduction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/priv_reduction.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/priv_reduction.2.cpp -------------------------------------------------------------------------------- /data_environment/sources/priv_reduction.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/priv_reduction.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/priv_reduction.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/priv_reduction.3.c -------------------------------------------------------------------------------- /data_environment/sources/priv_reduction.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/priv_reduction.3.f90 -------------------------------------------------------------------------------- /data_environment/sources/private.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/private.1.c -------------------------------------------------------------------------------- /data_environment/sources/private.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/private.1.f -------------------------------------------------------------------------------- /data_environment/sources/private.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/private.2.c -------------------------------------------------------------------------------- /data_environment/sources/private.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/private.2.f -------------------------------------------------------------------------------- /data_environment/sources/private.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/private.3.c -------------------------------------------------------------------------------- /data_environment/sources/private.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/private.3.f -------------------------------------------------------------------------------- /data_environment/sources/reduction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.1.c -------------------------------------------------------------------------------- /data_environment/sources/reduction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/reduction.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.2.c -------------------------------------------------------------------------------- /data_environment/sources/reduction.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/reduction.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.3.f90 -------------------------------------------------------------------------------- /data_environment/sources/reduction.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.4.f90 -------------------------------------------------------------------------------- /data_environment/sources/reduction.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.5.f90 -------------------------------------------------------------------------------- /data_environment/sources/reduction.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.6.c -------------------------------------------------------------------------------- /data_environment/sources/reduction.6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.6.f -------------------------------------------------------------------------------- /data_environment/sources/reduction.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.7.c -------------------------------------------------------------------------------- /data_environment/sources/reduction.7.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/reduction.7.f90 -------------------------------------------------------------------------------- /data_environment/sources/scan.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scan.1.c -------------------------------------------------------------------------------- /data_environment/sources/scan.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scan.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/scan.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scan.2.c -------------------------------------------------------------------------------- /data_environment/sources/scan.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scan.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/scan.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scan.3.c -------------------------------------------------------------------------------- /data_environment/sources/scan.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scan.3.f90 -------------------------------------------------------------------------------- /data_environment/sources/scope_reduction.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scope_reduction.1.cpp -------------------------------------------------------------------------------- /data_environment/sources/scope_reduction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/scope_reduction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/target_reduction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_reduction.1.c -------------------------------------------------------------------------------- /data_environment/sources/target_reduction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_reduction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/target_reduction.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_reduction.2.c -------------------------------------------------------------------------------- /data_environment/sources/target_reduction.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_reduction.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/target_task_reduction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_task_reduction.1.c -------------------------------------------------------------------------------- /data_environment/sources/target_task_reduction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_task_reduction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/target_task_reduction.2a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_task_reduction.2a.c -------------------------------------------------------------------------------- /data_environment/sources/target_task_reduction.2a.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_task_reduction.2a.f90 -------------------------------------------------------------------------------- /data_environment/sources/target_task_reduction.2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_task_reduction.2b.c -------------------------------------------------------------------------------- /data_environment/sources/target_task_reduction.2b.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/target_task_reduction.2b.f90 -------------------------------------------------------------------------------- /data_environment/sources/task_reduction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/task_reduction.1.c -------------------------------------------------------------------------------- /data_environment/sources/task_reduction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/task_reduction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/task_reduction.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/task_reduction.2.c -------------------------------------------------------------------------------- /data_environment/sources/task_reduction.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/task_reduction.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/taskloop_reduction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/taskloop_reduction.1.c -------------------------------------------------------------------------------- /data_environment/sources/taskloop_reduction.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/taskloop_reduction.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/taskloop_reduction.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/taskloop_reduction.2.c -------------------------------------------------------------------------------- /data_environment/sources/taskloop_reduction.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/taskloop_reduction.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/taskloop_simd_reduction.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/taskloop_simd_reduction.1.c -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.1.c -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.1.f -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.2.c -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.2.f -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.3.cpp -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.3.f -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.4.cpp -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.4.f -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.5.cpp -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.5.f -------------------------------------------------------------------------------- /data_environment/sources/threadprivate.6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/threadprivate.6.f -------------------------------------------------------------------------------- /data_environment/sources/udr.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.1.c -------------------------------------------------------------------------------- /data_environment/sources/udr.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.1.f90 -------------------------------------------------------------------------------- /data_environment/sources/udr.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.2.c -------------------------------------------------------------------------------- /data_environment/sources/udr.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.2.f90 -------------------------------------------------------------------------------- /data_environment/sources/udr.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.3.c -------------------------------------------------------------------------------- /data_environment/sources/udr.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.3.f90 -------------------------------------------------------------------------------- /data_environment/sources/udr.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.4.f90 -------------------------------------------------------------------------------- /data_environment/sources/udr.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.5.cpp -------------------------------------------------------------------------------- /data_environment/sources/udr.6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/sources/udr.6.cpp -------------------------------------------------------------------------------- /data_environment/threadprivate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/threadprivate.tex -------------------------------------------------------------------------------- /data_environment/udr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/data_environment/udr.tex -------------------------------------------------------------------------------- /devices/C++_virtual_functions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/C++_virtual_functions.tex -------------------------------------------------------------------------------- /devices/array_sections.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/array_sections.tex -------------------------------------------------------------------------------- /devices/array_shaping.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/array_shaping.tex -------------------------------------------------------------------------------- /devices/async_target_depend.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/async_target_depend.tex -------------------------------------------------------------------------------- /devices/async_target_nowait.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/async_target_nowait.tex -------------------------------------------------------------------------------- /devices/async_target_nowait_arg.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/async_target_nowait_arg.tex -------------------------------------------------------------------------------- /devices/async_target_nowait_depend.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/async_target_nowait_depend.tex -------------------------------------------------------------------------------- /devices/async_target_with_tasks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/async_target_with_tasks.tex -------------------------------------------------------------------------------- /devices/declare_target.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/declare_target.tex -------------------------------------------------------------------------------- /devices/device.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/device.tex -------------------------------------------------------------------------------- /devices/device_env_traits.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/device_env_traits.tex -------------------------------------------------------------------------------- /devices/lambda_expressions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/lambda_expressions.tex -------------------------------------------------------------------------------- /devices/self_mapping.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/self_mapping.tex -------------------------------------------------------------------------------- /devices/sources/array_sections.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.1.c -------------------------------------------------------------------------------- /devices/sources/array_sections.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.1.f90 -------------------------------------------------------------------------------- /devices/sources/array_sections.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.2.c -------------------------------------------------------------------------------- /devices/sources/array_sections.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.2.f90 -------------------------------------------------------------------------------- /devices/sources/array_sections.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.3.c -------------------------------------------------------------------------------- /devices/sources/array_sections.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.3.f90 -------------------------------------------------------------------------------- /devices/sources/array_sections.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.4.c -------------------------------------------------------------------------------- /devices/sources/array_sections.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_sections.4.f90 -------------------------------------------------------------------------------- /devices/sources/array_shaping.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_shaping.1.c -------------------------------------------------------------------------------- /devices/sources/array_shaping.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/array_shaping.1.f90 -------------------------------------------------------------------------------- /devices/sources/async_target.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.1.c -------------------------------------------------------------------------------- /devices/sources/async_target.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.1.f90 -------------------------------------------------------------------------------- /devices/sources/async_target.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.2.c -------------------------------------------------------------------------------- /devices/sources/async_target.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.2.f90 -------------------------------------------------------------------------------- /devices/sources/async_target.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.3.c -------------------------------------------------------------------------------- /devices/sources/async_target.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.3.f90 -------------------------------------------------------------------------------- /devices/sources/async_target.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.4.c -------------------------------------------------------------------------------- /devices/sources/async_target.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.4.f90 -------------------------------------------------------------------------------- /devices/sources/async_target.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.5.c -------------------------------------------------------------------------------- /devices/sources/async_target.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/async_target.5.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.1.c -------------------------------------------------------------------------------- /devices/sources/declare_target.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.1.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.2.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.2a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.2a.cpp -------------------------------------------------------------------------------- /devices/sources/declare_target.2b_classes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.2b_classes.hpp -------------------------------------------------------------------------------- /devices/sources/declare_target.2b_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.2b_functions.cpp -------------------------------------------------------------------------------- /devices/sources/declare_target.2b_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.2b_main.cpp -------------------------------------------------------------------------------- /devices/sources/declare_target.2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.2c.cpp -------------------------------------------------------------------------------- /devices/sources/declare_target.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.3.c -------------------------------------------------------------------------------- /devices/sources/declare_target.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.3.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.4.c -------------------------------------------------------------------------------- /devices/sources/declare_target.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.4.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.5.c -------------------------------------------------------------------------------- /devices/sources/declare_target.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.5.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.6.c -------------------------------------------------------------------------------- /devices/sources/declare_target.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.6.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.7.c -------------------------------------------------------------------------------- /devices/sources/declare_target.7.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.7.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target.8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.8.c -------------------------------------------------------------------------------- /devices/sources/declare_target.8.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target.8.f90 -------------------------------------------------------------------------------- /devices/sources/declare_target_indirect_call.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target_indirect_call.1.c -------------------------------------------------------------------------------- /devices/sources/declare_target_indirect_call.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/declare_target_indirect_call.1.f90 -------------------------------------------------------------------------------- /devices/sources/device.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.1.c -------------------------------------------------------------------------------- /devices/sources/device.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.1.f90 -------------------------------------------------------------------------------- /devices/sources/device.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.2.c -------------------------------------------------------------------------------- /devices/sources/device.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.2.f90 -------------------------------------------------------------------------------- /devices/sources/device.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.3.c -------------------------------------------------------------------------------- /devices/sources/device.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.3.f90 -------------------------------------------------------------------------------- /devices/sources/device.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.4.c -------------------------------------------------------------------------------- /devices/sources/device.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.4.f90 -------------------------------------------------------------------------------- /devices/sources/device.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.5.c -------------------------------------------------------------------------------- /devices/sources/device.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.5.f90 -------------------------------------------------------------------------------- /devices/sources/device.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.6.c -------------------------------------------------------------------------------- /devices/sources/device.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/device.6.f90 -------------------------------------------------------------------------------- /devices/sources/lambda_expressions.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/lambda_expressions.1.cpp -------------------------------------------------------------------------------- /devices/sources/self_map.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/self_map.1.c -------------------------------------------------------------------------------- /devices/sources/self_map.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/self_map.2.cpp -------------------------------------------------------------------------------- /devices/sources/self_map.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/self_map.2.f90 -------------------------------------------------------------------------------- /devices/sources/self_map.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/self_map.3.c -------------------------------------------------------------------------------- /devices/sources/self_map.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/self_map.3.f90 -------------------------------------------------------------------------------- /devices/sources/target.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.1.c -------------------------------------------------------------------------------- /devices/sources/target.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.1.f90 -------------------------------------------------------------------------------- /devices/sources/target.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.2.c -------------------------------------------------------------------------------- /devices/sources/target.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.2.f90 -------------------------------------------------------------------------------- /devices/sources/target.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.3.c -------------------------------------------------------------------------------- /devices/sources/target.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.3.f90 -------------------------------------------------------------------------------- /devices/sources/target.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.4.c -------------------------------------------------------------------------------- /devices/sources/target.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.4.f90 -------------------------------------------------------------------------------- /devices/sources/target.4b.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.4b.f90 -------------------------------------------------------------------------------- /devices/sources/target.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.5.c -------------------------------------------------------------------------------- /devices/sources/target.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.5.f90 -------------------------------------------------------------------------------- /devices/sources/target.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.6.c -------------------------------------------------------------------------------- /devices/sources/target.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target.6.f90 -------------------------------------------------------------------------------- /devices/sources/target_associate_ptr.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_associate_ptr.1.c -------------------------------------------------------------------------------- /devices/sources/target_associate_ptr.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_associate_ptr.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_data.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.1.c -------------------------------------------------------------------------------- /devices/sources/target_data.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_data.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.2.c -------------------------------------------------------------------------------- /devices/sources/target_data.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.2.f90 -------------------------------------------------------------------------------- /devices/sources/target_data.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.3.c -------------------------------------------------------------------------------- /devices/sources/target_data.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.3.f90 -------------------------------------------------------------------------------- /devices/sources/target_data.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.4.c -------------------------------------------------------------------------------- /devices/sources/target_data.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.4.f90 -------------------------------------------------------------------------------- /devices/sources/target_data.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.5.cpp -------------------------------------------------------------------------------- /devices/sources/target_data.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.5.f90 -------------------------------------------------------------------------------- /devices/sources/target_data.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.6.c -------------------------------------------------------------------------------- /devices/sources/target_data.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.6.f90 -------------------------------------------------------------------------------- /devices/sources/target_data.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.7.c -------------------------------------------------------------------------------- /devices/sources/target_data.7.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data.7.f90 -------------------------------------------------------------------------------- /devices/sources/target_data_semantics_new.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data_semantics_new.1.c -------------------------------------------------------------------------------- /devices/sources/target_data_semantics_new.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_data_semantics_new.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_defaultmap.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_defaultmap.1.c -------------------------------------------------------------------------------- /devices/sources/target_defaultmap.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_defaultmap.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_fort_allocatable_map.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_fort_allocatable_map.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_fort_allocatable_map.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_fort_allocatable_map.2.f90 -------------------------------------------------------------------------------- /devices/sources/target_fort_allocatable_map.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_fort_allocatable_map.3.f90 -------------------------------------------------------------------------------- /devices/sources/target_mapper.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_mapper.1.c -------------------------------------------------------------------------------- /devices/sources/target_mapper.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_mapper.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_mapper.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_mapper.2.c -------------------------------------------------------------------------------- /devices/sources/target_mapper.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_mapper.2.f90 -------------------------------------------------------------------------------- /devices/sources/target_mapper.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_mapper.3.c -------------------------------------------------------------------------------- /devices/sources/target_mapper.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_mapper.3.f90 -------------------------------------------------------------------------------- /devices/sources/target_ptr_map.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_ptr_map.1.c -------------------------------------------------------------------------------- /devices/sources/target_ptr_map.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_ptr_map.2.c -------------------------------------------------------------------------------- /devices/sources/target_ptr_map.3a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_ptr_map.3a.c -------------------------------------------------------------------------------- /devices/sources/target_ptr_map.3b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_ptr_map.3b.c -------------------------------------------------------------------------------- /devices/sources/target_ptr_map.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_ptr_map.4.c -------------------------------------------------------------------------------- /devices/sources/target_ptr_map.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_ptr_map.5.c -------------------------------------------------------------------------------- /devices/sources/target_ptr_map.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_ptr_map.5.f90 -------------------------------------------------------------------------------- /devices/sources/target_reverse_offload.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_reverse_offload.7.c -------------------------------------------------------------------------------- /devices/sources/target_reverse_offload.7.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_reverse_offload.7.f90 -------------------------------------------------------------------------------- /devices/sources/target_struct_map.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_struct_map.1.c -------------------------------------------------------------------------------- /devices/sources/target_struct_map.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_struct_map.2.cpp -------------------------------------------------------------------------------- /devices/sources/target_struct_map.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_struct_map.3.c -------------------------------------------------------------------------------- /devices/sources/target_struct_map.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_struct_map.4.c -------------------------------------------------------------------------------- /devices/sources/target_teams_workdistribute.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_teams_workdistribute.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_teams_workdistribute.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_teams_workdistribute.2.f90 -------------------------------------------------------------------------------- /devices/sources/target_teams_workdistribute.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_teams_workdistribute.3.f90 -------------------------------------------------------------------------------- /devices/sources/target_unstructured_data.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_unstructured_data.1.c -------------------------------------------------------------------------------- /devices/sources/target_unstructured_data.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_unstructured_data.1.cpp -------------------------------------------------------------------------------- /devices/sources/target_unstructured_data.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_unstructured_data.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_update.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_update.1.c -------------------------------------------------------------------------------- /devices/sources/target_update.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_update.1.f90 -------------------------------------------------------------------------------- /devices/sources/target_update.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_update.2.c -------------------------------------------------------------------------------- /devices/sources/target_update.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_update.2.f90 -------------------------------------------------------------------------------- /devices/sources/target_update.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_update.3.c -------------------------------------------------------------------------------- /devices/sources/target_update.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/target_update.3.f90 -------------------------------------------------------------------------------- /devices/sources/teams.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.1.c -------------------------------------------------------------------------------- /devices/sources/teams.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.1.f90 -------------------------------------------------------------------------------- /devices/sources/teams.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.2.c -------------------------------------------------------------------------------- /devices/sources/teams.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.2.f90 -------------------------------------------------------------------------------- /devices/sources/teams.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.3.c -------------------------------------------------------------------------------- /devices/sources/teams.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.3.f90 -------------------------------------------------------------------------------- /devices/sources/teams.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.4.c -------------------------------------------------------------------------------- /devices/sources/teams.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.4.f90 -------------------------------------------------------------------------------- /devices/sources/teams.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.5.c -------------------------------------------------------------------------------- /devices/sources/teams.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.5.f90 -------------------------------------------------------------------------------- /devices/sources/teams.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.6.c -------------------------------------------------------------------------------- /devices/sources/teams.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.6.f90 -------------------------------------------------------------------------------- /devices/sources/teams.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.7.c -------------------------------------------------------------------------------- /devices/sources/teams.7.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/teams.7.f90 -------------------------------------------------------------------------------- /devices/sources/usm_scalar_ptr_ref_asc.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/usm_scalar_ptr_ref_asc.1.cpp -------------------------------------------------------------------------------- /devices/sources/usm_scalar_ptr_ref_asc.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/usm_scalar_ptr_ref_asc.1.f90 -------------------------------------------------------------------------------- /devices/sources/virtual_functions.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/virtual_functions.1.cpp -------------------------------------------------------------------------------- /devices/sources/virtual_functions.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/sources/virtual_functions.2.cpp -------------------------------------------------------------------------------- /devices/target.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target.tex -------------------------------------------------------------------------------- /devices/target_associate_ptr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_associate_ptr.tex -------------------------------------------------------------------------------- /devices/target_data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_data.tex -------------------------------------------------------------------------------- /devices/target_defaultmap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_defaultmap.tex -------------------------------------------------------------------------------- /devices/target_fort_allocatable_array_mapping.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_fort_allocatable_array_mapping.tex -------------------------------------------------------------------------------- /devices/target_mapper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_mapper.tex -------------------------------------------------------------------------------- /devices/target_pointer_mapping.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_pointer_mapping.tex -------------------------------------------------------------------------------- /devices/target_structure_mapping.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_structure_mapping.tex -------------------------------------------------------------------------------- /devices/target_teams_workdistribute.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_teams_workdistribute.tex -------------------------------------------------------------------------------- /devices/target_unstructured_data.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_unstructured_data.tex -------------------------------------------------------------------------------- /devices/target_update.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/target_update.tex -------------------------------------------------------------------------------- /devices/teams.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/teams.tex -------------------------------------------------------------------------------- /devices/usm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/devices/usm.tex -------------------------------------------------------------------------------- /directives/attributes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/attributes.tex -------------------------------------------------------------------------------- /directives/compound_directive_names.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/compound_directive_names.tex -------------------------------------------------------------------------------- /directives/fixed_format_comments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/fixed_format_comments.tex -------------------------------------------------------------------------------- /directives/free_format_comments.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/free_format_comments.tex -------------------------------------------------------------------------------- /directives/pragmas.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/pragmas.tex -------------------------------------------------------------------------------- /directives/sources/compound_names.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/compound_names.1.c -------------------------------------------------------------------------------- /directives/sources/compound_names.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/compound_names.1.f90 -------------------------------------------------------------------------------- /directives/sources/directive_name_modifier.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/directive_name_modifier.1.c -------------------------------------------------------------------------------- /directives/sources/directive_name_modifier.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/directive_name_modifier.1.f90 -------------------------------------------------------------------------------- /directives/sources/directive_syntax_F_block.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/directive_syntax_F_block.1.f90 -------------------------------------------------------------------------------- /directives/sources/directive_syntax_F_block.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/directive_syntax_F_block.2.f90 -------------------------------------------------------------------------------- /directives/sources/directive_syntax_attribute.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/directive_syntax_attribute.1.cpp -------------------------------------------------------------------------------- /directives/sources/directive_syntax_attribute.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/directive_syntax_attribute.2.cpp -------------------------------------------------------------------------------- /directives/sources/directive_syntax_pragma.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/directive_syntax_pragma.1.c -------------------------------------------------------------------------------- /directives/sources/invalid_compound_names.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/invalid_compound_names.1.c -------------------------------------------------------------------------------- /directives/sources/invalid_compound_names.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/directives/sources/invalid_compound_names.1.f90 -------------------------------------------------------------------------------- /figs/close_policy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/close_policy.pdf -------------------------------------------------------------------------------- /figs/primary_policy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/primary_policy.pdf -------------------------------------------------------------------------------- /figs/proc_bind_fig.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/proc_bind_fig.pdf -------------------------------------------------------------------------------- /figs/proc_bind_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/proc_bind_fig.png -------------------------------------------------------------------------------- /figs/spread_policy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/spread_policy.pdf -------------------------------------------------------------------------------- /figs/stripe-1d_striping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/stripe-1d_striping.pdf -------------------------------------------------------------------------------- /figs/stripe-1d_striping.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/stripe-1d_striping.tex -------------------------------------------------------------------------------- /figs/stripe-2d_tiling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/stripe-2d_tiling.pdf -------------------------------------------------------------------------------- /figs/stripe-2d_tiling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/stripe-2d_tiling.tex -------------------------------------------------------------------------------- /figs/tile-2d_tiling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/tile-2d_tiling.pdf -------------------------------------------------------------------------------- /figs/tile-2d_tiling.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/tile-2d_tiling.tex -------------------------------------------------------------------------------- /figs/tile-Example_tile2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/tile-Example_tile2.pdf -------------------------------------------------------------------------------- /figs/tile-Example_tile2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/figs/tile-Example_tile2.tex -------------------------------------------------------------------------------- /generated-include.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/generated-include.tex -------------------------------------------------------------------------------- /introduction/Examples.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/introduction/Examples.tex -------------------------------------------------------------------------------- /latexdiff.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/latexdiff.cfg -------------------------------------------------------------------------------- /loop_transformations/apply.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/apply.tex -------------------------------------------------------------------------------- /loop_transformations/fuse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/fuse.tex -------------------------------------------------------------------------------- /loop_transformations/partial_tile.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/partial_tile.tex -------------------------------------------------------------------------------- /loop_transformations/sources/apply_nested.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_nested.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/apply_nested.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_nested.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/apply_span.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_span.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/apply_span.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_span.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/apply_split.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_split.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/apply_split.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_split.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/apply_split.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_split.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/apply_split.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_split.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/apply_syntax.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_syntax.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/apply_syntax.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_syntax.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/apply_syntax.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_syntax.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/apply_syntax.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_syntax.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/apply_syntax.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_syntax.3.c -------------------------------------------------------------------------------- /loop_transformations/sources/apply_syntax.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/apply_syntax.3.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/fuse.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/fuse.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/fuse.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/fuse.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/fuse.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/fuse.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/fuse.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/fuse.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/fuse.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/fuse.3.c -------------------------------------------------------------------------------- /loop_transformations/sources/fuse.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/fuse.3.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/partial_tile.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/partial_tile.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/partial_tile.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/partial_tile.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/partial_tile.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/partial_tile.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/partial_tile.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/partial_tile.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/split.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/split.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/split.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/split.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/split.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/split.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/split.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/split.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/stripe.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/stripe.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/stripe.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/stripe.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/stripe.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/stripe.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/stripe.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/stripe.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/tile.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/tile.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/tile.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/tile.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/tile.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/tile.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/tile.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/tile.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.1.c -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.1.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.2.c -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.2.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.3.c -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.3.f90 -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.4.c -------------------------------------------------------------------------------- /loop_transformations/sources/unroll.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/sources/unroll.4.f90 -------------------------------------------------------------------------------- /loop_transformations/split.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/split.tex -------------------------------------------------------------------------------- /loop_transformations/stripe.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/stripe.tex -------------------------------------------------------------------------------- /loop_transformations/tile.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/tile.tex -------------------------------------------------------------------------------- /loop_transformations/unroll.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/loop_transformations/unroll.tex -------------------------------------------------------------------------------- /memory_model/allocators.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/allocators.tex -------------------------------------------------------------------------------- /memory_model/fort_race.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/fort_race.tex -------------------------------------------------------------------------------- /memory_model/mem_model.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/mem_model.tex -------------------------------------------------------------------------------- /memory_model/sources/allocators.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.1.c -------------------------------------------------------------------------------- /memory_model/sources/allocators.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.1.f90 -------------------------------------------------------------------------------- /memory_model/sources/allocators.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.2.f90 -------------------------------------------------------------------------------- /memory_model/sources/allocators.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.3.f90 -------------------------------------------------------------------------------- /memory_model/sources/allocators.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.4.c -------------------------------------------------------------------------------- /memory_model/sources/allocators.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.4.f90 -------------------------------------------------------------------------------- /memory_model/sources/allocators.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.5.c -------------------------------------------------------------------------------- /memory_model/sources/allocators.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.5.f90 -------------------------------------------------------------------------------- /memory_model/sources/allocators.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.6.c -------------------------------------------------------------------------------- /memory_model/sources/allocators.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/allocators.6.f90 -------------------------------------------------------------------------------- /memory_model/sources/fort_race.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/fort_race.1.f90 -------------------------------------------------------------------------------- /memory_model/sources/mem_model.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.1.c -------------------------------------------------------------------------------- /memory_model/sources/mem_model.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.1.f90 -------------------------------------------------------------------------------- /memory_model/sources/mem_model.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.2.c -------------------------------------------------------------------------------- /memory_model/sources/mem_model.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.2.f -------------------------------------------------------------------------------- /memory_model/sources/mem_model.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.3.c -------------------------------------------------------------------------------- /memory_model/sources/mem_model.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.3.f -------------------------------------------------------------------------------- /memory_model/sources/mem_model.4a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.4a.c -------------------------------------------------------------------------------- /memory_model/sources/mem_model.4a.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.4a.f90 -------------------------------------------------------------------------------- /memory_model/sources/mem_model.4b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.4b.c -------------------------------------------------------------------------------- /memory_model/sources/mem_model.4b.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/memory_model/sources/mem_model.4b.f90 -------------------------------------------------------------------------------- /omp_copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/omp_copyright.txt -------------------------------------------------------------------------------- /ompt_interface/ompt_start.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/ompt_interface/ompt_start.tex -------------------------------------------------------------------------------- /ompt_interface/sources/ompt_start.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/ompt_interface/sources/ompt_start.1.c -------------------------------------------------------------------------------- /openmp-examples.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/openmp-examples.tex -------------------------------------------------------------------------------- /openmp-index.ist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/openmp-index.ist -------------------------------------------------------------------------------- /openmp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/openmp-logo.png -------------------------------------------------------------------------------- /openmp.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/openmp.sty -------------------------------------------------------------------------------- /parallel_execution/collapse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/collapse.tex -------------------------------------------------------------------------------- /parallel_execution/fort_do.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/fort_do.tex -------------------------------------------------------------------------------- /parallel_execution/fpriv_sections.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/fpriv_sections.tex -------------------------------------------------------------------------------- /parallel_execution/get_nthrs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/get_nthrs.tex -------------------------------------------------------------------------------- /parallel_execution/host_teams.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/host_teams.tex -------------------------------------------------------------------------------- /parallel_execution/linear_in_loop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/linear_in_loop.tex -------------------------------------------------------------------------------- /parallel_execution/loop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/loop.tex -------------------------------------------------------------------------------- /parallel_execution/masked.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/masked.tex -------------------------------------------------------------------------------- /parallel_execution/nowait.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/nowait.tex -------------------------------------------------------------------------------- /parallel_execution/nthrs_dynamic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/nthrs_dynamic.tex -------------------------------------------------------------------------------- /parallel_execution/nthrs_nesting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/nthrs_nesting.tex -------------------------------------------------------------------------------- /parallel_execution/parallel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/parallel.tex -------------------------------------------------------------------------------- /parallel_execution/ploop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/ploop.tex -------------------------------------------------------------------------------- /parallel_execution/pra_iterator.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/pra_iterator.tex -------------------------------------------------------------------------------- /parallel_execution/psections.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/psections.tex -------------------------------------------------------------------------------- /parallel_execution/set_dynamic_nthrs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/set_dynamic_nthrs.tex -------------------------------------------------------------------------------- /parallel_execution/single.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/single.tex -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.2.c -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.2.f -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.3.c -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.3.f -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.4.c -------------------------------------------------------------------------------- /parallel_execution/sources/collapse.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/collapse.4.f90 -------------------------------------------------------------------------------- /parallel_execution/sources/fort_do.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/fort_do.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/fort_do.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/fort_do.2.f -------------------------------------------------------------------------------- /parallel_execution/sources/fpriv_sections.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/fpriv_sections.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/fpriv_sections.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/fpriv_sections.1.f90 -------------------------------------------------------------------------------- /parallel_execution/sources/get_nthrs.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/get_nthrs.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/get_nthrs.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/get_nthrs.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/get_nthrs.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/get_nthrs.2.c -------------------------------------------------------------------------------- /parallel_execution/sources/get_nthrs.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/get_nthrs.2.f -------------------------------------------------------------------------------- /parallel_execution/sources/host_teams.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/host_teams.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/host_teams.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/host_teams.1.f90 -------------------------------------------------------------------------------- /parallel_execution/sources/linear_in_loop.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/linear_in_loop.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/linear_in_loop.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/linear_in_loop.1.f90 -------------------------------------------------------------------------------- /parallel_execution/sources/loop.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/loop.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/loop.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/loop.1.f90 -------------------------------------------------------------------------------- /parallel_execution/sources/loop.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/loop.2.c -------------------------------------------------------------------------------- /parallel_execution/sources/loop.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/loop.2.f90 -------------------------------------------------------------------------------- /parallel_execution/sources/masked.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/masked.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/masked.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/masked.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/nowait.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nowait.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/nowait.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nowait.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/nowait.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nowait.2.c -------------------------------------------------------------------------------- /parallel_execution/sources/nowait.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nowait.2.f90 -------------------------------------------------------------------------------- /parallel_execution/sources/nthrs_dynamic.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nthrs_dynamic.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/nthrs_dynamic.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nthrs_dynamic.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/nthrs_dynamic.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nthrs_dynamic.2.c -------------------------------------------------------------------------------- /parallel_execution/sources/nthrs_dynamic.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nthrs_dynamic.2.f -------------------------------------------------------------------------------- /parallel_execution/sources/nthrs_nesting.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nthrs_nesting.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/nthrs_nesting.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/nthrs_nesting.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/parallel.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/parallel.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/parallel.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/parallel.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/ploop.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/ploop.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/ploop.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/ploop.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/pra_iterator.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/pra_iterator.1.cpp -------------------------------------------------------------------------------- /parallel_execution/sources/psections.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/psections.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/psections.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/psections.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/set_dynamic_nthrs.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/set_dynamic_nthrs.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/set_dynamic_nthrs.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/set_dynamic_nthrs.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/single.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/single.1.c -------------------------------------------------------------------------------- /parallel_execution/sources/single.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/single.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/workshare.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/workshare.1.f -------------------------------------------------------------------------------- /parallel_execution/sources/workshare.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/workshare.2.f -------------------------------------------------------------------------------- /parallel_execution/sources/workshare.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/workshare.3.f -------------------------------------------------------------------------------- /parallel_execution/sources/workshare.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/workshare.4.f -------------------------------------------------------------------------------- /parallel_execution/sources/workshare.5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/workshare.5.f -------------------------------------------------------------------------------- /parallel_execution/sources/workshare.6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/workshare.6.f -------------------------------------------------------------------------------- /parallel_execution/sources/workshare.7.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/sources/workshare.7.f -------------------------------------------------------------------------------- /parallel_execution/workshare.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/parallel_execution/workshare.tex -------------------------------------------------------------------------------- /program_control/assumption.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/assumption.tex -------------------------------------------------------------------------------- /program_control/cancellation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/cancellation.tex -------------------------------------------------------------------------------- /program_control/cond_comp.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/cond_comp.tex -------------------------------------------------------------------------------- /program_control/context_based_variants.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/context_based_variants.tex -------------------------------------------------------------------------------- /program_control/dispatch.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/dispatch.tex -------------------------------------------------------------------------------- /program_control/icv.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/icv.tex -------------------------------------------------------------------------------- /program_control/interop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/interop.tex -------------------------------------------------------------------------------- /program_control/nested_loop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/nested_loop.tex -------------------------------------------------------------------------------- /program_control/nesting_restrict.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/nesting_restrict.tex -------------------------------------------------------------------------------- /program_control/pause_resource.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/pause_resource.tex -------------------------------------------------------------------------------- /program_control/reproducible.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/reproducible.tex -------------------------------------------------------------------------------- /program_control/requires.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/requires.tex -------------------------------------------------------------------------------- /program_control/sources/assumption.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/assumption.1.c -------------------------------------------------------------------------------- /program_control/sources/assumption.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/assumption.1.f90 -------------------------------------------------------------------------------- /program_control/sources/assumption.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/assumption.2.c -------------------------------------------------------------------------------- /program_control/sources/assumption.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/assumption.2.f90 -------------------------------------------------------------------------------- /program_control/sources/cancellation.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/cancellation.1.cpp -------------------------------------------------------------------------------- /program_control/sources/cancellation.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/cancellation.1.f90 -------------------------------------------------------------------------------- /program_control/sources/cancellation.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/cancellation.2.c -------------------------------------------------------------------------------- /program_control/sources/cancellation.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/cancellation.2.f90 -------------------------------------------------------------------------------- /program_control/sources/cond_comp.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/cond_comp.1.c -------------------------------------------------------------------------------- /program_control/sources/cond_comp.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/cond_comp.1.f -------------------------------------------------------------------------------- /program_control/sources/declare_variant.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/declare_variant.1.c -------------------------------------------------------------------------------- /program_control/sources/declare_variant.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/declare_variant.1.f90 -------------------------------------------------------------------------------- /program_control/sources/declare_variant.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/declare_variant.2.c -------------------------------------------------------------------------------- /program_control/sources/declare_variant.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/declare_variant.2.f90 -------------------------------------------------------------------------------- /program_control/sources/declare_variant.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/declare_variant.3.c -------------------------------------------------------------------------------- /program_control/sources/dispatch.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/dispatch.1.c -------------------------------------------------------------------------------- /program_control/sources/dispatch.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/dispatch.1.f90 -------------------------------------------------------------------------------- /program_control/sources/display_env.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/display_env.1.c -------------------------------------------------------------------------------- /program_control/sources/display_env.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/display_env.1.f90 -------------------------------------------------------------------------------- /program_control/sources/error.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/error.1.c -------------------------------------------------------------------------------- /program_control/sources/error.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/error.1.f90 -------------------------------------------------------------------------------- /program_control/sources/get_wtime.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/get_wtime.1.c -------------------------------------------------------------------------------- /program_control/sources/get_wtime.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/get_wtime.1.f90 -------------------------------------------------------------------------------- /program_control/sources/icv.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/icv.1.c -------------------------------------------------------------------------------- /program_control/sources/icv.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/icv.1.f -------------------------------------------------------------------------------- /program_control/sources/icv.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/icv.2.c -------------------------------------------------------------------------------- /program_control/sources/icv.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/icv.2.f90 -------------------------------------------------------------------------------- /program_control/sources/interop.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/interop.1.c -------------------------------------------------------------------------------- /program_control/sources/metadirective.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.1.c -------------------------------------------------------------------------------- /program_control/sources/metadirective.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.1.f90 -------------------------------------------------------------------------------- /program_control/sources/metadirective.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.2.c -------------------------------------------------------------------------------- /program_control/sources/metadirective.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.2.f90 -------------------------------------------------------------------------------- /program_control/sources/metadirective.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.3.c -------------------------------------------------------------------------------- /program_control/sources/metadirective.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.3.f90 -------------------------------------------------------------------------------- /program_control/sources/metadirective.3a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.3a.c -------------------------------------------------------------------------------- /program_control/sources/metadirective.3a.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.3a.f90 -------------------------------------------------------------------------------- /program_control/sources/metadirective.3b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.3b.c -------------------------------------------------------------------------------- /program_control/sources/metadirective.3b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.3b.h -------------------------------------------------------------------------------- /program_control/sources/metadirective.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.4.c -------------------------------------------------------------------------------- /program_control/sources/metadirective.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.4.f90 -------------------------------------------------------------------------------- /program_control/sources/metadirective.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/metadirective.5.cpp -------------------------------------------------------------------------------- /program_control/sources/nested_loop.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nested_loop.1.c -------------------------------------------------------------------------------- /program_control/sources/nested_loop.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nested_loop.1.f -------------------------------------------------------------------------------- /program_control/sources/nested_loop.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nested_loop.2.c -------------------------------------------------------------------------------- /program_control/sources/nested_loop.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nested_loop.2.f -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.1.c -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.1.f -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.2.c -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.2.f -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.3.c -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.3.f -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.4.c -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.4.f -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.5.c -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.5.f -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.6.c -------------------------------------------------------------------------------- /program_control/sources/nesting_restrict.6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/nesting_restrict.6.f -------------------------------------------------------------------------------- /program_control/sources/pause_resource.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/pause_resource.1.c -------------------------------------------------------------------------------- /program_control/sources/pause_resource.2a.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/pause_resource.2a.f90 -------------------------------------------------------------------------------- /program_control/sources/pause_resource.2b.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/pause_resource.2b.f90 -------------------------------------------------------------------------------- /program_control/sources/reproducible.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/reproducible.1.c -------------------------------------------------------------------------------- /program_control/sources/reproducible.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/reproducible.1.f90 -------------------------------------------------------------------------------- /program_control/sources/reproducible.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/reproducible.2.c -------------------------------------------------------------------------------- /program_control/sources/reproducible.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/reproducible.2.f90 -------------------------------------------------------------------------------- /program_control/sources/requires.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/requires.1.cpp -------------------------------------------------------------------------------- /program_control/sources/requires.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/requires.1.f90 -------------------------------------------------------------------------------- /program_control/sources/selector_scoring.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/selector_scoring.1.c -------------------------------------------------------------------------------- /program_control/sources/selector_scoring.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/selector_scoring.1.f90 -------------------------------------------------------------------------------- /program_control/sources/selector_scoring.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/selector_scoring.2.c -------------------------------------------------------------------------------- /program_control/sources/selector_scoring.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/selector_scoring.2.f90 -------------------------------------------------------------------------------- /program_control/sources/standalone.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/standalone.1.c -------------------------------------------------------------------------------- /program_control/sources/standalone.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/standalone.1.f90 -------------------------------------------------------------------------------- /program_control/sources/standalone.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/standalone.2.c -------------------------------------------------------------------------------- /program_control/sources/standalone.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/standalone.2.f90 -------------------------------------------------------------------------------- /program_control/sources/target_offload_control.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/target_offload_control.1.c -------------------------------------------------------------------------------- /program_control/sources/target_offload_control.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/sources/target_offload_control.1.f90 -------------------------------------------------------------------------------- /program_control/standalone.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/standalone.tex -------------------------------------------------------------------------------- /program_control/target_offload.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/target_offload.tex -------------------------------------------------------------------------------- /program_control/utilities.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/program_control/utilities.tex -------------------------------------------------------------------------------- /sources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/sources/README -------------------------------------------------------------------------------- /sources/check_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/sources/check_tags -------------------------------------------------------------------------------- /sources/eval_codes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/sources/eval_codes -------------------------------------------------------------------------------- /sources/eval_utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/sources/eval_utils -------------------------------------------------------------------------------- /sources/run_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/sources/run_code -------------------------------------------------------------------------------- /sources/sourceme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/sources/sourceme -------------------------------------------------------------------------------- /synchronization/acquire_release.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/acquire_release.tex -------------------------------------------------------------------------------- /synchronization/atomic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/atomic.tex -------------------------------------------------------------------------------- /synchronization/atomic_cas.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/atomic_cas.tex -------------------------------------------------------------------------------- /synchronization/atomic_hint.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/atomic_hint.tex -------------------------------------------------------------------------------- /synchronization/atomic_restrict.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/atomic_restrict.tex -------------------------------------------------------------------------------- /synchronization/barrier_regions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/barrier_regions.tex -------------------------------------------------------------------------------- /synchronization/critical.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/critical.tex -------------------------------------------------------------------------------- /synchronization/depobj.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/depobj.tex -------------------------------------------------------------------------------- /synchronization/doacross.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/doacross.tex -------------------------------------------------------------------------------- /synchronization/init_lock.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/init_lock.tex -------------------------------------------------------------------------------- /synchronization/init_lock_with_hint.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/init_lock_with_hint.tex -------------------------------------------------------------------------------- /synchronization/lock_owner.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/lock_owner.tex -------------------------------------------------------------------------------- /synchronization/locks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/locks.tex -------------------------------------------------------------------------------- /synchronization/nestable_lock.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/nestable_lock.tex -------------------------------------------------------------------------------- /synchronization/ordered.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/ordered.tex -------------------------------------------------------------------------------- /synchronization/safesync.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/safesync.tex -------------------------------------------------------------------------------- /synchronization/simple_lock.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/simple_lock.tex -------------------------------------------------------------------------------- /synchronization/sources/acquire_release.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release.1.c -------------------------------------------------------------------------------- /synchronization/sources/acquire_release.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release.1.f90 -------------------------------------------------------------------------------- /synchronization/sources/acquire_release.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release.2.c -------------------------------------------------------------------------------- /synchronization/sources/acquire_release.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release.2.f90 -------------------------------------------------------------------------------- /synchronization/sources/acquire_release.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release.3.c -------------------------------------------------------------------------------- /synchronization/sources/acquire_release.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release.3.f90 -------------------------------------------------------------------------------- /synchronization/sources/acquire_release_broke.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release_broke.4.c -------------------------------------------------------------------------------- /synchronization/sources/acquire_release_broke.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/acquire_release_broke.4.f90 -------------------------------------------------------------------------------- /synchronization/sources/atomic.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.1.c -------------------------------------------------------------------------------- /synchronization/sources/atomic.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.1.f -------------------------------------------------------------------------------- /synchronization/sources/atomic.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.2.c -------------------------------------------------------------------------------- /synchronization/sources/atomic.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.2.f -------------------------------------------------------------------------------- /synchronization/sources/atomic.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.3.c -------------------------------------------------------------------------------- /synchronization/sources/atomic.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.3.f -------------------------------------------------------------------------------- /synchronization/sources/atomic.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.4.c -------------------------------------------------------------------------------- /synchronization/sources/atomic.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic.4.f90 -------------------------------------------------------------------------------- /synchronization/sources/atomic_restrict.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic_restrict.1.c -------------------------------------------------------------------------------- /synchronization/sources/atomic_restrict.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic_restrict.1.f -------------------------------------------------------------------------------- /synchronization/sources/atomic_restrict.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic_restrict.2.c -------------------------------------------------------------------------------- /synchronization/sources/atomic_restrict.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic_restrict.2.f -------------------------------------------------------------------------------- /synchronization/sources/atomic_restrict.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/atomic_restrict.3.f -------------------------------------------------------------------------------- /synchronization/sources/barrier_regions.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/barrier_regions.1.c -------------------------------------------------------------------------------- /synchronization/sources/barrier_regions.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/barrier_regions.1.f -------------------------------------------------------------------------------- /synchronization/sources/cas.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/cas.1.c -------------------------------------------------------------------------------- /synchronization/sources/cas.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/cas.1.f90 -------------------------------------------------------------------------------- /synchronization/sources/cas.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/cas.2.c -------------------------------------------------------------------------------- /synchronization/sources/cas.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/cas.2.f90 -------------------------------------------------------------------------------- /synchronization/sources/critical.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/critical.1.c -------------------------------------------------------------------------------- /synchronization/sources/critical.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/critical.1.f -------------------------------------------------------------------------------- /synchronization/sources/critical.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/critical.2.c -------------------------------------------------------------------------------- /synchronization/sources/critical.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/critical.2.f -------------------------------------------------------------------------------- /synchronization/sources/depobj.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/depobj.1.c -------------------------------------------------------------------------------- /synchronization/sources/depobj.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/depobj.1.f90 -------------------------------------------------------------------------------- /synchronization/sources/doacross.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.1.c -------------------------------------------------------------------------------- /synchronization/sources/doacross.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.1.f90 -------------------------------------------------------------------------------- /synchronization/sources/doacross.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.2.c -------------------------------------------------------------------------------- /synchronization/sources/doacross.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.2.f90 -------------------------------------------------------------------------------- /synchronization/sources/doacross.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.3.c -------------------------------------------------------------------------------- /synchronization/sources/doacross.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.3.f90 -------------------------------------------------------------------------------- /synchronization/sources/doacross.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.4.c -------------------------------------------------------------------------------- /synchronization/sources/doacross.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/doacross.4.f90 -------------------------------------------------------------------------------- /synchronization/sources/init_lock.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/init_lock.1.cpp -------------------------------------------------------------------------------- /synchronization/sources/init_lock.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/init_lock.1.f -------------------------------------------------------------------------------- /synchronization/sources/init_lock_with_hint.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/init_lock_with_hint.1.cpp -------------------------------------------------------------------------------- /synchronization/sources/init_lock_with_hint.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/init_lock_with_hint.1.f -------------------------------------------------------------------------------- /synchronization/sources/lock_owner.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/lock_owner.1.c -------------------------------------------------------------------------------- /synchronization/sources/lock_owner.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/lock_owner.1.f -------------------------------------------------------------------------------- /synchronization/sources/nestable_lock.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/nestable_lock.1.c -------------------------------------------------------------------------------- /synchronization/sources/nestable_lock.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/nestable_lock.1.f -------------------------------------------------------------------------------- /synchronization/sources/ordered.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/ordered.1.c -------------------------------------------------------------------------------- /synchronization/sources/ordered.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/ordered.1.f -------------------------------------------------------------------------------- /synchronization/sources/ordered.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/ordered.2.c -------------------------------------------------------------------------------- /synchronization/sources/ordered.2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/ordered.2.f -------------------------------------------------------------------------------- /synchronization/sources/ordered.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/ordered.3.c -------------------------------------------------------------------------------- /synchronization/sources/ordered.3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/ordered.3.f -------------------------------------------------------------------------------- /synchronization/sources/safesync.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/safesync.1.c -------------------------------------------------------------------------------- /synchronization/sources/safesync.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/safesync.1.f90 -------------------------------------------------------------------------------- /synchronization/sources/simple_lock.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/simple_lock.1.c -------------------------------------------------------------------------------- /synchronization/sources/simple_lock.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/simple_lock.1.f -------------------------------------------------------------------------------- /synchronization/sources/worksharing_critical.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/worksharing_critical.1.c -------------------------------------------------------------------------------- /synchronization/sources/worksharing_critical.1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/sources/worksharing_critical.1.f -------------------------------------------------------------------------------- /synchronization/worksharing_critical.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/synchronization/worksharing_critical.tex -------------------------------------------------------------------------------- /tasking/free_agent.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/free_agent.tex -------------------------------------------------------------------------------- /tasking/parallel_masked_taskloop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/parallel_masked_taskloop.tex -------------------------------------------------------------------------------- /tasking/sources/free_agent.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/free_agent.1.c -------------------------------------------------------------------------------- /tasking/sources/free_agent.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/free_agent.1.f90 -------------------------------------------------------------------------------- /tasking/sources/free_agent.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/free_agent.2.c -------------------------------------------------------------------------------- /tasking/sources/free_agent.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/free_agent.2.f90 -------------------------------------------------------------------------------- /tasking/sources/free_agent.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/free_agent.3.c -------------------------------------------------------------------------------- /tasking/sources/free_agent.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/free_agent.3.f90 -------------------------------------------------------------------------------- /tasking/sources/parallel_masked_taskloop.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/parallel_masked_taskloop.1.c -------------------------------------------------------------------------------- /tasking/sources/parallel_masked_taskloop.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/parallel_masked_taskloop.1.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.1.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.1.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.10.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.10.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.10.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.11.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.11.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.11.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.12.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.12.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.12.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.13.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.13.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.13.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.14.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.14.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.14.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.15.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.15.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.15.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.2.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.2.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.3.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.3.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.4.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.4.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.4b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.4b.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.4b.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.4b.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.5.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.5.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.6.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.6.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.6.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.7.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.7.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.7.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.8.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.8.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.8.f90 -------------------------------------------------------------------------------- /tasking/sources/task_dep.9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.9.c -------------------------------------------------------------------------------- /tasking/sources/task_dep.9.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_dep.9.f90 -------------------------------------------------------------------------------- /tasking/sources/task_detach.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_detach.1.c -------------------------------------------------------------------------------- /tasking/sources/task_detach.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_detach.1.f90 -------------------------------------------------------------------------------- /tasking/sources/task_detach.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_detach.2.c -------------------------------------------------------------------------------- /tasking/sources/task_priority.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_priority.1.c -------------------------------------------------------------------------------- /tasking/sources/task_priority.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/task_priority.1.f90 -------------------------------------------------------------------------------- /tasking/sources/taskgraph.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.1.c -------------------------------------------------------------------------------- /tasking/sources/taskgraph.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.1.f90 -------------------------------------------------------------------------------- /tasking/sources/taskgraph.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.2.c -------------------------------------------------------------------------------- /tasking/sources/taskgraph.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.2.f90 -------------------------------------------------------------------------------- /tasking/sources/taskgraph.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.3.c -------------------------------------------------------------------------------- /tasking/sources/taskgraph.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.3.f90 -------------------------------------------------------------------------------- /tasking/sources/taskgraph.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.4.c -------------------------------------------------------------------------------- /tasking/sources/taskgraph.4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.4.f90 -------------------------------------------------------------------------------- /tasking/sources/taskgraph.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.5.c -------------------------------------------------------------------------------- /tasking/sources/taskgraph.5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgraph.5.f90 -------------------------------------------------------------------------------- /tasking/sources/taskgroup.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgroup.1.c -------------------------------------------------------------------------------- /tasking/sources/taskgroup.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskgroup.1.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.1.c -------------------------------------------------------------------------------- /tasking/sources/tasking.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.1.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.10.c -------------------------------------------------------------------------------- /tasking/sources/tasking.10.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.10.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.11.c -------------------------------------------------------------------------------- /tasking/sources/tasking.11.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.11.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.12.c -------------------------------------------------------------------------------- /tasking/sources/tasking.12.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.12.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.13.c -------------------------------------------------------------------------------- /tasking/sources/tasking.13.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.13.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.14.c -------------------------------------------------------------------------------- /tasking/sources/tasking.14.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.14.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.2.c -------------------------------------------------------------------------------- /tasking/sources/tasking.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.2.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.3.c -------------------------------------------------------------------------------- /tasking/sources/tasking.3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.3.f90 -------------------------------------------------------------------------------- /tasking/sources/tasking.4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.4.c -------------------------------------------------------------------------------- /tasking/sources/tasking.4.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.4.f -------------------------------------------------------------------------------- /tasking/sources/tasking.5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.5.c -------------------------------------------------------------------------------- /tasking/sources/tasking.5.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.5.f -------------------------------------------------------------------------------- /tasking/sources/tasking.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.6.c -------------------------------------------------------------------------------- /tasking/sources/tasking.6.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.6.f -------------------------------------------------------------------------------- /tasking/sources/tasking.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.7.c -------------------------------------------------------------------------------- /tasking/sources/tasking.7.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.7.f -------------------------------------------------------------------------------- /tasking/sources/tasking.8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.8.c -------------------------------------------------------------------------------- /tasking/sources/tasking.8.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.8.f -------------------------------------------------------------------------------- /tasking/sources/tasking.9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.9.c -------------------------------------------------------------------------------- /tasking/sources/tasking.9.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/tasking.9.f -------------------------------------------------------------------------------- /tasking/sources/taskloop.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop.1.c -------------------------------------------------------------------------------- /tasking/sources/taskloop.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop.1.f90 -------------------------------------------------------------------------------- /tasking/sources/taskloop.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop.2.c -------------------------------------------------------------------------------- /tasking/sources/taskloop.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop.2.f90 -------------------------------------------------------------------------------- /tasking/sources/taskloop_dep.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop_dep.1.c -------------------------------------------------------------------------------- /tasking/sources/taskloop_dep.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop_dep.1.f90 -------------------------------------------------------------------------------- /tasking/sources/taskloop_dep.2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop_dep.2.c -------------------------------------------------------------------------------- /tasking/sources/taskloop_dep.2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskloop_dep.2.f90 -------------------------------------------------------------------------------- /tasking/sources/taskyield.1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskyield.1.c -------------------------------------------------------------------------------- /tasking/sources/taskyield.1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/sources/taskyield.1.f90 -------------------------------------------------------------------------------- /tasking/task_dep.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/task_dep.tex -------------------------------------------------------------------------------- /tasking/task_detach.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/task_detach.tex -------------------------------------------------------------------------------- /tasking/task_priority.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/task_priority.tex -------------------------------------------------------------------------------- /tasking/taskgraph.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/taskgraph.tex -------------------------------------------------------------------------------- /tasking/taskgroup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/taskgroup.tex -------------------------------------------------------------------------------- /tasking/tasking.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/tasking.tex -------------------------------------------------------------------------------- /tasking/taskloop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/taskloop.tex -------------------------------------------------------------------------------- /tasking/taskloop_dep.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/taskloop_dep.tex -------------------------------------------------------------------------------- /tasking/taskyield.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/tasking/taskyield.tex -------------------------------------------------------------------------------- /util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/Makefile -------------------------------------------------------------------------------- /util/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/README -------------------------------------------------------------------------------- /util/chk_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/chk_tags.c -------------------------------------------------------------------------------- /util/cvt_fixed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/cvt_fixed -------------------------------------------------------------------------------- /util/gen_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/gen_tags -------------------------------------------------------------------------------- /util/latexdiff/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/latexdiff/VERSION -------------------------------------------------------------------------------- /util/latexdiff/latexdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/latexdiff/latexdiff -------------------------------------------------------------------------------- /util/latexdiff/latexdiff-fast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/latexdiff/latexdiff-fast -------------------------------------------------------------------------------- /util/latexdiff/latexdiff-vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/latexdiff/latexdiff-vc -------------------------------------------------------------------------------- /util/list_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/util/list_tags -------------------------------------------------------------------------------- /versioninfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenMP/Examples/HEAD/versioninfo --------------------------------------------------------------------------------