├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── documentation ├── FP_error.md ├── OvO_presentation_20-05-20.pdf └── README.md ├── ovo.sh ├── requirements.txt ├── src ├── config │ ├── cmath_complex_synopsis.json │ ├── cmath_synopsis.json │ ├── fmath_synopsis.json │ └── omp_struct.json ├── gtest.py ├── report.py ├── sanity_check │ ├── Makefile │ ├── implicit_mapping_double_complex.cpp │ └── implicit_mapping_float_complex.cpp ├── tabulate_local.py ├── tabulate_local_pre36.py └── template │ ├── Makefile.jinja2 │ ├── hierarchical_parallelism.F90.jinja2 │ ├── hierarchical_parallelism.cpp.jinja2 │ ├── mathematical_function.F90.jinja2 │ ├── mathematical_function.cpp.jinja2 │ └── ovo_usage.txt └── test_src ├── cpp ├── hierarchical_parallelism │ ├── atomic_add-float │ │ ├── Makefile │ │ ├── target.cpp │ │ ├── target__parallel.cpp │ │ ├── target__parallel__for.cpp │ │ ├── target__parallel__for__simd.cpp │ │ ├── target__parallel__simd.cpp │ │ ├── target__parallel_for.cpp │ │ ├── target__parallel_for__simd.cpp │ │ ├── target__parallel_for_simd.cpp │ │ ├── target__simd.cpp │ │ ├── target__teams__distribute.cpp │ │ ├── target__teams__distribute__parallel.cpp │ │ ├── target__teams__distribute__parallel__for.cpp │ │ ├── target__teams__distribute__parallel__for__simd.cpp │ │ ├── target__teams__distribute__parallel__simd.cpp │ │ ├── target__teams__distribute__parallel_for.cpp │ │ ├── target__teams__distribute__parallel_for__simd.cpp │ │ ├── target__teams__distribute__simd.cpp │ │ ├── target__teams__parallel.cpp │ │ ├── target__teams__parallel__for.cpp │ │ ├── target__teams__parallel__for__simd.cpp │ │ ├── target__teams__parallel__simd.cpp │ │ ├── target__teams__parallel_for.cpp │ │ ├── target__teams__parallel_for__simd.cpp │ │ ├── target__teams__parallel_for_simd.cpp │ │ ├── target__teams_distribute.cpp │ │ ├── target__teams_distribute__parallel.cpp │ │ ├── target__teams_distribute__parallel__for.cpp │ │ ├── target__teams_distribute__parallel__for__simd.cpp │ │ ├── target__teams_distribute__parallel__simd.cpp │ │ ├── target__teams_distribute__parallel_for.cpp │ │ ├── target__teams_distribute__parallel_for__simd.cpp │ │ ├── target__teams_distribute__simd.cpp │ │ ├── target__teams_distribute_parallel_for.cpp │ │ ├── target__teams_distribute_parallel_for__simd.cpp │ │ ├── target__teams_distribute_parallel_for_simd.cpp │ │ ├── target__teams_distribute_simd.cpp │ │ ├── target_parallel.cpp │ │ ├── target_parallel__for.cpp │ │ ├── target_parallel__for__simd.cpp │ │ ├── target_parallel__simd.cpp │ │ ├── target_parallel_for.cpp │ │ ├── target_parallel_for__simd.cpp │ │ ├── target_parallel_for_simd.cpp │ │ ├── target_simd.cpp │ │ ├── target_teams__distribute.cpp │ │ ├── target_teams__distribute__parallel.cpp │ │ ├── target_teams__distribute__parallel__for.cpp │ │ ├── target_teams__distribute__parallel__for__simd.cpp │ │ ├── target_teams__distribute__parallel__simd.cpp │ │ ├── target_teams__distribute__parallel_for.cpp │ │ ├── target_teams__distribute__parallel_for__simd.cpp │ │ ├── target_teams__distribute__simd.cpp │ │ ├── target_teams__distribute_simd.cpp │ │ ├── target_teams__parallel.cpp │ │ ├── target_teams__parallel__for.cpp │ │ ├── target_teams__parallel__for__simd.cpp │ │ ├── target_teams__parallel__simd.cpp │ │ ├── target_teams__parallel_for.cpp │ │ ├── target_teams__parallel_for__simd.cpp │ │ ├── target_teams__parallel_for_simd.cpp │ │ ├── target_teams_distribute.cpp │ │ ├── target_teams_distribute__parallel.cpp │ │ ├── target_teams_distribute__parallel__for.cpp │ │ ├── target_teams_distribute__parallel__for__simd.cpp │ │ ├── target_teams_distribute__parallel__simd.cpp │ │ ├── target_teams_distribute__parallel_for.cpp │ │ ├── target_teams_distribute__parallel_for__simd.cpp │ │ ├── target_teams_distribute__simd.cpp │ │ ├── target_teams_distribute_parallel_for.cpp │ │ ├── target_teams_distribute_parallel_for__simd.cpp │ │ ├── target_teams_distribute_parallel_for_simd.cpp │ │ └── target_teams_distribute_simd.cpp │ ├── memcopy-complex_double │ │ ├── Makefile │ │ ├── target__parallel__for.cpp │ │ ├── target__parallel__for__simd.cpp │ │ ├── target__parallel_for.cpp │ │ ├── target__parallel_for__simd.cpp │ │ ├── target__parallel_for_simd.cpp │ │ ├── target__simd.cpp │ │ ├── target__teams__distribute.cpp │ │ ├── target__teams__distribute__parallel__for.cpp │ │ ├── target__teams__distribute__parallel__for__simd.cpp │ │ ├── target__teams__distribute__parallel_for.cpp │ │ ├── target__teams__distribute__parallel_for__simd.cpp │ │ ├── target__teams__distribute__simd.cpp │ │ ├── target__teams_distribute.cpp │ │ ├── target__teams_distribute__parallel__for.cpp │ │ ├── target__teams_distribute__parallel__for__simd.cpp │ │ ├── target__teams_distribute__parallel_for.cpp │ │ ├── target__teams_distribute__parallel_for__simd.cpp │ │ ├── target__teams_distribute__simd.cpp │ │ ├── target__teams_distribute_parallel_for.cpp │ │ ├── target__teams_distribute_parallel_for__simd.cpp │ │ ├── target__teams_distribute_parallel_for_simd.cpp │ │ ├── target__teams_distribute_simd.cpp │ │ ├── target_parallel__for.cpp │ │ ├── target_parallel__for__simd.cpp │ │ ├── target_parallel_for.cpp │ │ ├── target_parallel_for__simd.cpp │ │ ├── target_parallel_for_simd.cpp │ │ ├── target_simd.cpp │ │ ├── target_teams__distribute.cpp │ │ ├── target_teams__distribute__parallel__for.cpp │ │ ├── target_teams__distribute__parallel__for__simd.cpp │ │ ├── target_teams__distribute__parallel_for.cpp │ │ ├── target_teams__distribute__parallel_for__simd.cpp │ │ ├── target_teams__distribute__simd.cpp │ │ ├── target_teams__distribute_simd.cpp │ │ ├── target_teams_distribute.cpp │ │ ├── target_teams_distribute__parallel__for.cpp │ │ ├── target_teams_distribute__parallel__for__simd.cpp │ │ ├── target_teams_distribute__parallel_for.cpp │ │ ├── target_teams_distribute__parallel_for__simd.cpp │ │ ├── target_teams_distribute__simd.cpp │ │ ├── target_teams_distribute_parallel_for.cpp │ │ ├── target_teams_distribute_parallel_for__simd.cpp │ │ ├── target_teams_distribute_parallel_for_simd.cpp │ │ └── target_teams_distribute_simd.cpp │ ├── memcopy-float │ │ ├── Makefile │ │ ├── target__parallel__for.cpp │ │ ├── target__parallel__for__simd.cpp │ │ ├── target__parallel_for.cpp │ │ ├── target__parallel_for__simd.cpp │ │ ├── target__parallel_for_simd.cpp │ │ ├── target__simd.cpp │ │ ├── target__teams__distribute.cpp │ │ ├── target__teams__distribute__parallel__for.cpp │ │ ├── target__teams__distribute__parallel__for__simd.cpp │ │ ├── target__teams__distribute__parallel_for.cpp │ │ ├── target__teams__distribute__parallel_for__simd.cpp │ │ ├── target__teams__distribute__simd.cpp │ │ ├── target__teams_distribute.cpp │ │ ├── target__teams_distribute__parallel__for.cpp │ │ ├── target__teams_distribute__parallel__for__simd.cpp │ │ ├── target__teams_distribute__parallel_for.cpp │ │ ├── target__teams_distribute__parallel_for__simd.cpp │ │ ├── target__teams_distribute__simd.cpp │ │ ├── target__teams_distribute_parallel_for.cpp │ │ ├── target__teams_distribute_parallel_for__simd.cpp │ │ ├── target__teams_distribute_parallel_for_simd.cpp │ │ ├── target__teams_distribute_simd.cpp │ │ ├── target_parallel__for.cpp │ │ ├── target_parallel__for__simd.cpp │ │ ├── target_parallel_for.cpp │ │ ├── target_parallel_for__simd.cpp │ │ ├── target_parallel_for_simd.cpp │ │ ├── target_simd.cpp │ │ ├── target_teams__distribute.cpp │ │ ├── target_teams__distribute__parallel__for.cpp │ │ ├── target_teams__distribute__parallel__for__simd.cpp │ │ ├── target_teams__distribute__parallel_for.cpp │ │ ├── target_teams__distribute__parallel_for__simd.cpp │ │ ├── target_teams__distribute__simd.cpp │ │ ├── target_teams__distribute_simd.cpp │ │ ├── target_teams_distribute.cpp │ │ ├── target_teams_distribute__parallel__for.cpp │ │ ├── target_teams_distribute__parallel__for__simd.cpp │ │ ├── target_teams_distribute__parallel_for.cpp │ │ ├── target_teams_distribute__parallel_for__simd.cpp │ │ ├── target_teams_distribute__simd.cpp │ │ ├── target_teams_distribute_parallel_for.cpp │ │ ├── target_teams_distribute_parallel_for__simd.cpp │ │ ├── target_teams_distribute_parallel_for_simd.cpp │ │ └── target_teams_distribute_simd.cpp │ ├── reduction_add-complex_double │ │ ├── Makefile │ │ ├── target.cpp │ │ ├── target__parallel.cpp │ │ ├── target__parallel__for.cpp │ │ ├── target__parallel__for__simd.cpp │ │ ├── target__parallel__simd.cpp │ │ ├── target__parallel_for.cpp │ │ ├── target__parallel_for__simd.cpp │ │ ├── target__parallel_for_simd.cpp │ │ ├── target__simd.cpp │ │ ├── target__teams.cpp │ │ ├── target__teams__distribute.cpp │ │ ├── target__teams__distribute__parallel.cpp │ │ ├── target__teams__distribute__parallel__for.cpp │ │ ├── target__teams__distribute__parallel__for__simd.cpp │ │ ├── target__teams__distribute__parallel__simd.cpp │ │ ├── target__teams__distribute__parallel_for.cpp │ │ ├── target__teams__distribute__parallel_for__simd.cpp │ │ ├── target__teams__distribute__simd.cpp │ │ ├── target__teams__parallel.cpp │ │ ├── target__teams__parallel__for.cpp │ │ ├── target__teams__parallel__for__simd.cpp │ │ ├── target__teams__parallel__simd.cpp │ │ ├── target__teams__parallel_for.cpp │ │ ├── target__teams__parallel_for__simd.cpp │ │ ├── target__teams__parallel_for_simd.cpp │ │ ├── target__teams_distribute.cpp │ │ ├── target__teams_distribute__parallel.cpp │ │ ├── target__teams_distribute__parallel__for.cpp │ │ ├── target__teams_distribute__parallel__for__simd.cpp │ │ ├── target__teams_distribute__parallel__simd.cpp │ │ ├── target__teams_distribute__parallel_for.cpp │ │ ├── target__teams_distribute__parallel_for__simd.cpp │ │ ├── target__teams_distribute__simd.cpp │ │ ├── target__teams_distribute_parallel_for.cpp │ │ ├── target__teams_distribute_parallel_for__simd.cpp │ │ ├── target__teams_distribute_parallel_for_simd.cpp │ │ ├── target__teams_distribute_simd.cpp │ │ ├── target_parallel.cpp │ │ ├── target_parallel__for.cpp │ │ ├── target_parallel__for__simd.cpp │ │ ├── target_parallel__simd.cpp │ │ ├── target_parallel_for.cpp │ │ ├── target_parallel_for__simd.cpp │ │ ├── target_parallel_for_simd.cpp │ │ ├── target_simd.cpp │ │ ├── target_teams.cpp │ │ ├── target_teams__distribute.cpp │ │ ├── target_teams__distribute__parallel.cpp │ │ ├── target_teams__distribute__parallel__for.cpp │ │ ├── target_teams__distribute__parallel__for__simd.cpp │ │ ├── target_teams__distribute__parallel__simd.cpp │ │ ├── target_teams__distribute__parallel_for.cpp │ │ ├── target_teams__distribute__parallel_for__simd.cpp │ │ ├── target_teams__distribute__simd.cpp │ │ ├── target_teams__distribute_simd.cpp │ │ ├── target_teams__parallel.cpp │ │ ├── target_teams__parallel__for.cpp │ │ ├── target_teams__parallel__for__simd.cpp │ │ ├── target_teams__parallel__simd.cpp │ │ ├── target_teams__parallel_for.cpp │ │ ├── target_teams__parallel_for__simd.cpp │ │ ├── target_teams__parallel_for_simd.cpp │ │ ├── target_teams_distribute.cpp │ │ ├── target_teams_distribute__parallel.cpp │ │ ├── target_teams_distribute__parallel__for.cpp │ │ ├── target_teams_distribute__parallel__for__simd.cpp │ │ ├── target_teams_distribute__parallel__simd.cpp │ │ ├── target_teams_distribute__parallel_for.cpp │ │ ├── target_teams_distribute__parallel_for__simd.cpp │ │ ├── target_teams_distribute__simd.cpp │ │ ├── target_teams_distribute_parallel_for.cpp │ │ ├── target_teams_distribute_parallel_for__simd.cpp │ │ ├── target_teams_distribute_parallel_for_simd.cpp │ │ └── target_teams_distribute_simd.cpp │ └── reduction_add-float │ │ ├── Makefile │ │ ├── target.cpp │ │ ├── target__parallel.cpp │ │ ├── target__parallel__for.cpp │ │ ├── target__parallel__for__simd.cpp │ │ ├── target__parallel__simd.cpp │ │ ├── target__parallel_for.cpp │ │ ├── target__parallel_for__simd.cpp │ │ ├── target__parallel_for_simd.cpp │ │ ├── target__simd.cpp │ │ ├── target__teams.cpp │ │ ├── target__teams__distribute.cpp │ │ ├── target__teams__distribute__parallel.cpp │ │ ├── target__teams__distribute__parallel__for.cpp │ │ ├── target__teams__distribute__parallel__for__simd.cpp │ │ ├── target__teams__distribute__parallel__simd.cpp │ │ ├── target__teams__distribute__parallel_for.cpp │ │ ├── target__teams__distribute__parallel_for__simd.cpp │ │ ├── target__teams__distribute__simd.cpp │ │ ├── target__teams__parallel.cpp │ │ ├── target__teams__parallel__for.cpp │ │ ├── target__teams__parallel__for__simd.cpp │ │ ├── target__teams__parallel__simd.cpp │ │ ├── target__teams__parallel_for.cpp │ │ ├── target__teams__parallel_for__simd.cpp │ │ ├── target__teams__parallel_for_simd.cpp │ │ ├── target__teams_distribute.cpp │ │ ├── target__teams_distribute__parallel.cpp │ │ ├── target__teams_distribute__parallel__for.cpp │ │ ├── target__teams_distribute__parallel__for__simd.cpp │ │ ├── target__teams_distribute__parallel__simd.cpp │ │ ├── target__teams_distribute__parallel_for.cpp │ │ ├── target__teams_distribute__parallel_for__simd.cpp │ │ ├── target__teams_distribute__simd.cpp │ │ ├── target__teams_distribute_parallel_for.cpp │ │ ├── target__teams_distribute_parallel_for__simd.cpp │ │ ├── target__teams_distribute_parallel_for_simd.cpp │ │ ├── target__teams_distribute_simd.cpp │ │ ├── target_parallel.cpp │ │ ├── target_parallel__for.cpp │ │ ├── target_parallel__for__simd.cpp │ │ ├── target_parallel__simd.cpp │ │ ├── target_parallel_for.cpp │ │ ├── target_parallel_for__simd.cpp │ │ ├── target_parallel_for_simd.cpp │ │ ├── target_simd.cpp │ │ ├── target_teams.cpp │ │ ├── target_teams__distribute.cpp │ │ ├── target_teams__distribute__parallel.cpp │ │ ├── target_teams__distribute__parallel__for.cpp │ │ ├── target_teams__distribute__parallel__for__simd.cpp │ │ ├── target_teams__distribute__parallel__simd.cpp │ │ ├── target_teams__distribute__parallel_for.cpp │ │ ├── target_teams__distribute__parallel_for__simd.cpp │ │ ├── target_teams__distribute__simd.cpp │ │ ├── target_teams__distribute_simd.cpp │ │ ├── target_teams__parallel.cpp │ │ ├── target_teams__parallel__for.cpp │ │ ├── target_teams__parallel__for__simd.cpp │ │ ├── target_teams__parallel__simd.cpp │ │ ├── target_teams__parallel_for.cpp │ │ ├── target_teams__parallel_for__simd.cpp │ │ ├── target_teams__parallel_for_simd.cpp │ │ ├── target_teams_distribute.cpp │ │ ├── target_teams_distribute__parallel.cpp │ │ ├── target_teams_distribute__parallel__for.cpp │ │ ├── target_teams_distribute__parallel__for__simd.cpp │ │ ├── target_teams_distribute__parallel__simd.cpp │ │ ├── target_teams_distribute__parallel_for.cpp │ │ ├── target_teams_distribute__parallel_for__simd.cpp │ │ ├── target_teams_distribute__simd.cpp │ │ ├── target_teams_distribute_parallel_for.cpp │ │ ├── target_teams_distribute_parallel_for__simd.cpp │ │ ├── target_teams_distribute_parallel_for_simd.cpp │ │ └── target_teams_distribute_simd.cpp └── mathematical_function │ ├── cpp11-target-complex │ ├── Makefile │ ├── acos_complex_double_complex_double.cpp │ ├── acos_complex_float_complex_float.cpp │ ├── acosh_complex_double_complex_double.cpp │ ├── acosh_complex_float_complex_float.cpp │ ├── asin_complex_double_complex_double.cpp │ ├── asin_complex_float_complex_float.cpp │ ├── asinh_complex_double_complex_double.cpp │ ├── asinh_complex_float_complex_float.cpp │ ├── atan_complex_double_complex_double.cpp │ ├── atan_complex_float_complex_float.cpp │ ├── atanh_complex_double_complex_double.cpp │ ├── atanh_complex_float_complex_float.cpp │ ├── cos_complex_double_complex_double.cpp │ ├── cos_complex_float_complex_float.cpp │ ├── cosh_complex_double_complex_double.cpp │ ├── cosh_complex_float_complex_float.cpp │ ├── exp_complex_double_complex_double.cpp │ ├── exp_complex_float_complex_float.cpp │ ├── log10_complex_double_complex_double.cpp │ ├── log10_complex_float_complex_float.cpp │ ├── log_complex_double_complex_double.cpp │ ├── log_complex_float_complex_float.cpp │ ├── pow_complex_double_complex_double_complex_double.cpp │ ├── pow_complex_float_complex_float_complex_float.cpp │ ├── sin_complex_double_complex_double.cpp │ ├── sin_complex_float_complex_float.cpp │ ├── sinh_complex_double_complex_double.cpp │ ├── sinh_complex_float_complex_float.cpp │ ├── sqrt_complex_double_complex_double.cpp │ ├── sqrt_complex_float_complex_float.cpp │ ├── tan_complex_double_complex_double.cpp │ ├── tan_complex_float_complex_float.cpp │ ├── tanh_complex_double_complex_double.cpp │ └── tanh_complex_float_complex_float.cpp │ └── cpp11-target │ ├── Makefile │ ├── abs_double_double.cpp │ ├── abs_float_float.cpp │ ├── abs_int_int.cpp │ ├── acos_double_double.cpp │ ├── acos_float_float.cpp │ ├── acosf_float_float.cpp │ ├── acosh_double_double.cpp │ ├── acosh_float_float.cpp │ ├── acoshf_float_float.cpp │ ├── asin_double_double.cpp │ ├── asin_float_float.cpp │ ├── asinf_float_float.cpp │ ├── asinh_double_double.cpp │ ├── asinh_float_float.cpp │ ├── asinhf_float_float.cpp │ ├── atan2_double_double_double.cpp │ ├── atan2_float_float_float.cpp │ ├── atan2f_float_float_float.cpp │ ├── atan_double_double.cpp │ ├── atan_float_float.cpp │ ├── atanf_float_float.cpp │ ├── atanh_double_double.cpp │ ├── atanh_float_float.cpp │ ├── atanhf_float_float.cpp │ ├── cbrt_double_double.cpp │ ├── cbrt_float_float.cpp │ ├── cbrtf_float_float.cpp │ ├── ceil_double_double.cpp │ ├── ceil_float_float.cpp │ ├── ceilf_float_float.cpp │ ├── copysign_double_double_double.cpp │ ├── copysign_float_float_float.cpp │ ├── copysignf_float_float_float.cpp │ ├── cos_double_double.cpp │ ├── cos_float_float.cpp │ ├── cosf_float_float.cpp │ ├── cosh_double_double.cpp │ ├── cosh_float_float.cpp │ ├── coshf_float_float.cpp │ ├── erf_double_double.cpp │ ├── erf_float_float.cpp │ ├── erfc_double_double.cpp │ ├── erfc_float_float.cpp │ ├── erfcf_float_float.cpp │ ├── erff_float_float.cpp │ ├── exp2_double_double.cpp │ ├── exp2_float_float.cpp │ ├── exp2f_float_float.cpp │ ├── exp_double_double.cpp │ ├── exp_float_float.cpp │ ├── expf_float_float.cpp │ ├── expm1_double_double.cpp │ ├── expm1_float_float.cpp │ ├── expm1f_float_float.cpp │ ├── fabs_double_double.cpp │ ├── fabs_float_float.cpp │ ├── fabsf_float_float.cpp │ ├── fdim_double_double_double.cpp │ ├── fdim_float_float_float.cpp │ ├── fdimf_float_float_float.cpp │ ├── floor_double_double.cpp │ ├── floor_float_float.cpp │ ├── floorf_float_float.cpp │ ├── fma_double_double_double_double.cpp │ ├── fma_float_float_float_float.cpp │ ├── fmaf_float_float_float_float.cpp │ ├── fmax_double_double_double.cpp │ ├── fmax_float_float_float.cpp │ ├── fmaxf_float_float_float.cpp │ ├── fmin_double_double_double.cpp │ ├── fmin_float_float_float.cpp │ ├── fminf_float_float_float.cpp │ ├── fmod_double_double_double.cpp │ ├── fmod_float_float_float.cpp │ ├── fmodf_float_float_float.cpp │ ├── fpclassify_double_int.cpp │ ├── fpclassify_float_int.cpp │ ├── frexp_double_int_double.cpp │ ├── frexp_float_int_float.cpp │ ├── frexpf_float_int_float.cpp │ ├── hypot_double_double_double.cpp │ ├── hypot_float_float_float.cpp │ ├── hypotf_float_float_float.cpp │ ├── ilogb_double_int.cpp │ ├── ilogb_float_int.cpp │ ├── ilogbf_float_int.cpp │ ├── isfinite_double_bool.cpp │ ├── isfinite_float_bool.cpp │ ├── isgreater_double_double_bool.cpp │ ├── isgreater_float_float_bool.cpp │ ├── isgreaterequal_double_double_bool.cpp │ ├── isgreaterequal_float_float_bool.cpp │ ├── isinf_double_bool.cpp │ ├── isinf_float_bool.cpp │ ├── isless_double_double_bool.cpp │ ├── isless_float_float_bool.cpp │ ├── islessequal_double_double_bool.cpp │ ├── islessequal_float_float_bool.cpp │ ├── islessgreater_double_double_bool.cpp │ ├── islessgreater_float_float_bool.cpp │ ├── isnan_double_bool.cpp │ ├── isnan_float_bool.cpp │ ├── isnormal_double_bool.cpp │ ├── isnormal_float_bool.cpp │ ├── isunordered_double_double_bool.cpp │ ├── isunordered_float_float_bool.cpp │ ├── ldexp_double_int_double.cpp │ ├── ldexp_float_int_float.cpp │ ├── ldexpf_float_int_float.cpp │ ├── lgamma_double_double.cpp │ ├── lgamma_float_float.cpp │ ├── lgammaf_float_float.cpp │ ├── log10_double_double.cpp │ ├── log10_float_float.cpp │ ├── log10f_float_float.cpp │ ├── log1p_double_double.cpp │ ├── log1p_float_float.cpp │ ├── log1pf_float_float.cpp │ ├── log2_double_double.cpp │ ├── log2_float_float.cpp │ ├── log2f_float_float.cpp │ ├── log_double_double.cpp │ ├── log_float_float.cpp │ ├── logb_double_double.cpp │ ├── logb_float_float.cpp │ ├── logbf_float_float.cpp │ ├── logf_float_float.cpp │ ├── modf_double_double_double.cpp │ ├── modf_float_float_float.cpp │ ├── modff_float_float_float.cpp │ ├── nearbyint_double_double.cpp │ ├── nearbyint_float_float.cpp │ ├── nearbyintf_float_float.cpp │ ├── nextafter_double_double_double.cpp │ ├── nextafter_float_float_float.cpp │ ├── nextafterf_float_float_float.cpp │ ├── pow_double_double_double.cpp │ ├── pow_float_float_float.cpp │ ├── powf_float_float_float.cpp │ ├── remainder_double_double_double.cpp │ ├── remainder_float_float_float.cpp │ ├── remainderf_float_float_float.cpp │ ├── remquo_double_double_int_double.cpp │ ├── remquo_float_float_int_float.cpp │ ├── remquof_float_float_int_float.cpp │ ├── rint_double_double.cpp │ ├── rint_float_float.cpp │ ├── rintf_float_float.cpp │ ├── round_double_double.cpp │ ├── round_float_float.cpp │ ├── roundf_float_float.cpp │ ├── scalbn_double_int_double.cpp │ ├── scalbn_float_int_float.cpp │ ├── scalbnf_float_int_float.cpp │ ├── signbit_double_bool.cpp │ ├── signbit_float_bool.cpp │ ├── sin_double_double.cpp │ ├── sin_float_float.cpp │ ├── sinf_float_float.cpp │ ├── sinh_double_double.cpp │ ├── sinh_float_float.cpp │ ├── sinhf_float_float.cpp │ ├── sqrt_double_double.cpp │ ├── sqrt_float_float.cpp │ ├── sqrtf_float_float.cpp │ ├── tan_double_double.cpp │ ├── tan_float_float.cpp │ ├── tanf_float_float.cpp │ ├── tanh_double_double.cpp │ ├── tanh_float_float.cpp │ ├── tanhf_float_float.cpp │ ├── tgamma_double_double.cpp │ ├── tgamma_float_float.cpp │ ├── tgammaf_float_float.cpp │ ├── trunc_double_double.cpp │ ├── trunc_float_float.cpp │ └── truncf_float_float.cpp └── fortran ├── hierarchical_parallelism ├── atomic_add-real │ ├── Makefile │ ├── target.F90 │ ├── target__parallel.F90 │ ├── target__parallel__do.F90 │ ├── target__parallel__do__simd.F90 │ ├── target__parallel__simd.F90 │ ├── target__parallel_do.F90 │ ├── target__parallel_do__simd.F90 │ ├── target__parallel_do_simd.F90 │ ├── target__simd.F90 │ ├── target__teams__distribute.F90 │ ├── target__teams__distribute__parallel.F90 │ ├── target__teams__distribute__parallel__do.F90 │ ├── target__teams__distribute__parallel__do__simd.F90 │ ├── target__teams__distribute__parallel__simd.F90 │ ├── target__teams__distribute__parallel_do.F90 │ ├── target__teams__distribute__parallel_do__simd.F90 │ ├── target__teams__distribute__simd.F90 │ ├── target__teams__parallel.F90 │ ├── target__teams__parallel__do.F90 │ ├── target__teams__parallel__do__simd.F90 │ ├── target__teams__parallel__simd.F90 │ ├── target__teams__parallel_do.F90 │ ├── target__teams__parallel_do__simd.F90 │ ├── target__teams__parallel_do_simd.F90 │ ├── target__teams_distribute.F90 │ ├── target__teams_distribute__parallel.F90 │ ├── target__teams_distribute__parallel__do.F90 │ ├── target__teams_distribute__parallel__do__simd.F90 │ ├── target__teams_distribute__parallel__simd.F90 │ ├── target__teams_distribute__parallel_do.F90 │ ├── target__teams_distribute__parallel_do__simd.F90 │ ├── target__teams_distribute__simd.F90 │ ├── target__teams_distribute_parallel_do.F90 │ ├── target__teams_distribute_parallel_do__simd.F90 │ ├── target__teams_distribute_parallel_do_simd.F90 │ ├── target__teams_distribute_simd.F90 │ ├── target_parallel.F90 │ ├── target_parallel__do.F90 │ ├── target_parallel__do__simd.F90 │ ├── target_parallel__simd.F90 │ ├── target_parallel_do.F90 │ ├── target_parallel_do__simd.F90 │ ├── target_parallel_do_simd.F90 │ ├── target_simd.F90 │ ├── target_teams__distribute.F90 │ ├── target_teams__distribute__parallel.F90 │ ├── target_teams__distribute__parallel__do.F90 │ ├── target_teams__distribute__parallel__do__simd.F90 │ ├── target_teams__distribute__parallel__simd.F90 │ ├── target_teams__distribute__parallel_do.F90 │ ├── target_teams__distribute__parallel_do__simd.F90 │ ├── target_teams__distribute__simd.F90 │ ├── target_teams__distribute_simd.F90 │ ├── target_teams__parallel.F90 │ ├── target_teams__parallel__do.F90 │ ├── target_teams__parallel__do__simd.F90 │ ├── target_teams__parallel__simd.F90 │ ├── target_teams__parallel_do.F90 │ ├── target_teams__parallel_do__simd.F90 │ ├── target_teams__parallel_do_simd.F90 │ ├── target_teams_distribute.F90 │ ├── target_teams_distribute__parallel.F90 │ ├── target_teams_distribute__parallel__do.F90 │ ├── target_teams_distribute__parallel__do__simd.F90 │ ├── target_teams_distribute__parallel__simd.F90 │ ├── target_teams_distribute__parallel_do.F90 │ ├── target_teams_distribute__parallel_do__simd.F90 │ ├── target_teams_distribute__simd.F90 │ ├── target_teams_distribute_parallel_do.F90 │ ├── target_teams_distribute_parallel_do__simd.F90 │ ├── target_teams_distribute_parallel_do_simd.F90 │ └── target_teams_distribute_simd.F90 ├── memcopy-double_complex │ ├── Makefile │ ├── target__parallel__do.F90 │ ├── target__parallel__do__simd.F90 │ ├── target__parallel_do.F90 │ ├── target__parallel_do__simd.F90 │ ├── target__parallel_do_simd.F90 │ ├── target__simd.F90 │ ├── target__teams__distribute.F90 │ ├── target__teams__distribute__parallel__do.F90 │ ├── target__teams__distribute__parallel__do__simd.F90 │ ├── target__teams__distribute__parallel_do.F90 │ ├── target__teams__distribute__parallel_do__simd.F90 │ ├── target__teams__distribute__simd.F90 │ ├── target__teams_distribute.F90 │ ├── target__teams_distribute__parallel__do.F90 │ ├── target__teams_distribute__parallel__do__simd.F90 │ ├── target__teams_distribute__parallel_do.F90 │ ├── target__teams_distribute__parallel_do__simd.F90 │ ├── target__teams_distribute__simd.F90 │ ├── target__teams_distribute_parallel_do.F90 │ ├── target__teams_distribute_parallel_do__simd.F90 │ ├── target__teams_distribute_parallel_do_simd.F90 │ ├── target__teams_distribute_simd.F90 │ ├── target_parallel__do.F90 │ ├── target_parallel__do__simd.F90 │ ├── target_parallel_do.F90 │ ├── target_parallel_do__simd.F90 │ ├── target_parallel_do_simd.F90 │ ├── target_simd.F90 │ ├── target_teams__distribute.F90 │ ├── target_teams__distribute__parallel__do.F90 │ ├── target_teams__distribute__parallel__do__simd.F90 │ ├── target_teams__distribute__parallel_do.F90 │ ├── target_teams__distribute__parallel_do__simd.F90 │ ├── target_teams__distribute__simd.F90 │ ├── target_teams__distribute_simd.F90 │ ├── target_teams_distribute.F90 │ ├── target_teams_distribute__parallel__do.F90 │ ├── target_teams_distribute__parallel__do__simd.F90 │ ├── target_teams_distribute__parallel_do.F90 │ ├── target_teams_distribute__parallel_do__simd.F90 │ ├── target_teams_distribute__simd.F90 │ ├── target_teams_distribute_parallel_do.F90 │ ├── target_teams_distribute_parallel_do__simd.F90 │ ├── target_teams_distribute_parallel_do_simd.F90 │ └── target_teams_distribute_simd.F90 ├── memcopy-real │ ├── Makefile │ ├── target__parallel__do.F90 │ ├── target__parallel__do__simd.F90 │ ├── target__parallel_do.F90 │ ├── target__parallel_do__simd.F90 │ ├── target__parallel_do_simd.F90 │ ├── target__simd.F90 │ ├── target__teams__distribute.F90 │ ├── target__teams__distribute__parallel__do.F90 │ ├── target__teams__distribute__parallel__do__simd.F90 │ ├── target__teams__distribute__parallel_do.F90 │ ├── target__teams__distribute__parallel_do__simd.F90 │ ├── target__teams__distribute__simd.F90 │ ├── target__teams_distribute.F90 │ ├── target__teams_distribute__parallel__do.F90 │ ├── target__teams_distribute__parallel__do__simd.F90 │ ├── target__teams_distribute__parallel_do.F90 │ ├── target__teams_distribute__parallel_do__simd.F90 │ ├── target__teams_distribute__simd.F90 │ ├── target__teams_distribute_parallel_do.F90 │ ├── target__teams_distribute_parallel_do__simd.F90 │ ├── target__teams_distribute_parallel_do_simd.F90 │ ├── target__teams_distribute_simd.F90 │ ├── target_parallel__do.F90 │ ├── target_parallel__do__simd.F90 │ ├── target_parallel_do.F90 │ ├── target_parallel_do__simd.F90 │ ├── target_parallel_do_simd.F90 │ ├── target_simd.F90 │ ├── target_teams__distribute.F90 │ ├── target_teams__distribute__parallel__do.F90 │ ├── target_teams__distribute__parallel__do__simd.F90 │ ├── target_teams__distribute__parallel_do.F90 │ ├── target_teams__distribute__parallel_do__simd.F90 │ ├── target_teams__distribute__simd.F90 │ ├── target_teams__distribute_simd.F90 │ ├── target_teams_distribute.F90 │ ├── target_teams_distribute__parallel__do.F90 │ ├── target_teams_distribute__parallel__do__simd.F90 │ ├── target_teams_distribute__parallel_do.F90 │ ├── target_teams_distribute__parallel_do__simd.F90 │ ├── target_teams_distribute__simd.F90 │ ├── target_teams_distribute_parallel_do.F90 │ ├── target_teams_distribute_parallel_do__simd.F90 │ ├── target_teams_distribute_parallel_do_simd.F90 │ └── target_teams_distribute_simd.F90 ├── reduction_add-double_complex │ ├── Makefile │ ├── target.F90 │ ├── target__parallel.F90 │ ├── target__parallel__do.F90 │ ├── target__parallel__do__simd.F90 │ ├── target__parallel__simd.F90 │ ├── target__parallel_do.F90 │ ├── target__parallel_do__simd.F90 │ ├── target__parallel_do_simd.F90 │ ├── target__simd.F90 │ ├── target__teams.F90 │ ├── target__teams__distribute.F90 │ ├── target__teams__distribute__parallel.F90 │ ├── target__teams__distribute__parallel__do.F90 │ ├── target__teams__distribute__parallel__do__simd.F90 │ ├── target__teams__distribute__parallel__simd.F90 │ ├── target__teams__distribute__parallel_do.F90 │ ├── target__teams__distribute__parallel_do__simd.F90 │ ├── target__teams__distribute__simd.F90 │ ├── target__teams__parallel.F90 │ ├── target__teams__parallel__do.F90 │ ├── target__teams__parallel__do__simd.F90 │ ├── target__teams__parallel__simd.F90 │ ├── target__teams__parallel_do.F90 │ ├── target__teams__parallel_do__simd.F90 │ ├── target__teams__parallel_do_simd.F90 │ ├── target__teams_distribute.F90 │ ├── target__teams_distribute__parallel.F90 │ ├── target__teams_distribute__parallel__do.F90 │ ├── target__teams_distribute__parallel__do__simd.F90 │ ├── target__teams_distribute__parallel__simd.F90 │ ├── target__teams_distribute__parallel_do.F90 │ ├── target__teams_distribute__parallel_do__simd.F90 │ ├── target__teams_distribute__simd.F90 │ ├── target__teams_distribute_parallel_do.F90 │ ├── target__teams_distribute_parallel_do__simd.F90 │ ├── target__teams_distribute_parallel_do_simd.F90 │ ├── target__teams_distribute_simd.F90 │ ├── target_parallel.F90 │ ├── target_parallel__do.F90 │ ├── target_parallel__do__simd.F90 │ ├── target_parallel__simd.F90 │ ├── target_parallel_do.F90 │ ├── target_parallel_do__simd.F90 │ ├── target_parallel_do_simd.F90 │ ├── target_simd.F90 │ ├── target_teams.F90 │ ├── target_teams__distribute.F90 │ ├── target_teams__distribute__parallel.F90 │ ├── target_teams__distribute__parallel__do.F90 │ ├── target_teams__distribute__parallel__do__simd.F90 │ ├── target_teams__distribute__parallel__simd.F90 │ ├── target_teams__distribute__parallel_do.F90 │ ├── target_teams__distribute__parallel_do__simd.F90 │ ├── target_teams__distribute__simd.F90 │ ├── target_teams__distribute_simd.F90 │ ├── target_teams__parallel.F90 │ ├── target_teams__parallel__do.F90 │ ├── target_teams__parallel__do__simd.F90 │ ├── target_teams__parallel__simd.F90 │ ├── target_teams__parallel_do.F90 │ ├── target_teams__parallel_do__simd.F90 │ ├── target_teams__parallel_do_simd.F90 │ ├── target_teams_distribute.F90 │ ├── target_teams_distribute__parallel.F90 │ ├── target_teams_distribute__parallel__do.F90 │ ├── target_teams_distribute__parallel__do__simd.F90 │ ├── target_teams_distribute__parallel__simd.F90 │ ├── target_teams_distribute__parallel_do.F90 │ ├── target_teams_distribute__parallel_do__simd.F90 │ ├── target_teams_distribute__simd.F90 │ ├── target_teams_distribute_parallel_do.F90 │ ├── target_teams_distribute_parallel_do__simd.F90 │ ├── target_teams_distribute_parallel_do_simd.F90 │ └── target_teams_distribute_simd.F90 └── reduction_add-real │ ├── Makefile │ ├── target.F90 │ ├── target__parallel.F90 │ ├── target__parallel__do.F90 │ ├── target__parallel__do__simd.F90 │ ├── target__parallel__simd.F90 │ ├── target__parallel_do.F90 │ ├── target__parallel_do__simd.F90 │ ├── target__parallel_do_simd.F90 │ ├── target__simd.F90 │ ├── target__teams.F90 │ ├── target__teams__distribute.F90 │ ├── target__teams__distribute__parallel.F90 │ ├── target__teams__distribute__parallel__do.F90 │ ├── target__teams__distribute__parallel__do__simd.F90 │ ├── target__teams__distribute__parallel__simd.F90 │ ├── target__teams__distribute__parallel_do.F90 │ ├── target__teams__distribute__parallel_do__simd.F90 │ ├── target__teams__distribute__simd.F90 │ ├── target__teams__parallel.F90 │ ├── target__teams__parallel__do.F90 │ ├── target__teams__parallel__do__simd.F90 │ ├── target__teams__parallel__simd.F90 │ ├── target__teams__parallel_do.F90 │ ├── target__teams__parallel_do__simd.F90 │ ├── target__teams__parallel_do_simd.F90 │ ├── target__teams_distribute.F90 │ ├── target__teams_distribute__parallel.F90 │ ├── target__teams_distribute__parallel__do.F90 │ ├── target__teams_distribute__parallel__do__simd.F90 │ ├── target__teams_distribute__parallel__simd.F90 │ ├── target__teams_distribute__parallel_do.F90 │ ├── target__teams_distribute__parallel_do__simd.F90 │ ├── target__teams_distribute__simd.F90 │ ├── target__teams_distribute_parallel_do.F90 │ ├── target__teams_distribute_parallel_do__simd.F90 │ ├── target__teams_distribute_parallel_do_simd.F90 │ ├── target__teams_distribute_simd.F90 │ ├── target_parallel.F90 │ ├── target_parallel__do.F90 │ ├── target_parallel__do__simd.F90 │ ├── target_parallel__simd.F90 │ ├── target_parallel_do.F90 │ ├── target_parallel_do__simd.F90 │ ├── target_parallel_do_simd.F90 │ ├── target_simd.F90 │ ├── target_teams.F90 │ ├── target_teams__distribute.F90 │ ├── target_teams__distribute__parallel.F90 │ ├── target_teams__distribute__parallel__do.F90 │ ├── target_teams__distribute__parallel__do__simd.F90 │ ├── target_teams__distribute__parallel__simd.F90 │ ├── target_teams__distribute__parallel_do.F90 │ ├── target_teams__distribute__parallel_do__simd.F90 │ ├── target_teams__distribute__simd.F90 │ ├── target_teams__distribute_simd.F90 │ ├── target_teams__parallel.F90 │ ├── target_teams__parallel__do.F90 │ ├── target_teams__parallel__do__simd.F90 │ ├── target_teams__parallel__simd.F90 │ ├── target_teams__parallel_do.F90 │ ├── target_teams__parallel_do__simd.F90 │ ├── target_teams__parallel_do_simd.F90 │ ├── target_teams_distribute.F90 │ ├── target_teams_distribute__parallel.F90 │ ├── target_teams_distribute__parallel__do.F90 │ ├── target_teams_distribute__parallel__do__simd.F90 │ ├── target_teams_distribute__parallel__simd.F90 │ ├── target_teams_distribute__parallel_do.F90 │ ├── target_teams_distribute__parallel_do__simd.F90 │ ├── target_teams_distribute__simd.F90 │ ├── target_teams_distribute_parallel_do.F90 │ ├── target_teams_distribute_parallel_do__simd.F90 │ ├── target_teams_distribute_parallel_do_simd.F90 │ └── target_teams_distribute_simd.F90 └── mathematical_function ├── F77-target-complex ├── ABS_complex_real.F90 ├── AIMAG_complex_real.F90 ├── CMPLX_complex_complex.F90 ├── CMPLX_integer_integer_complex.F90 ├── CMPLX_real_real_complex.F90 ├── CONJG_complex_complex.F90 ├── COS_complex_complex.F90 ├── DBLE_complex_double_precision.F90 ├── EXP_complex_complex.F90 ├── INT_complex_integer.F90 ├── LOG_complex_complex.F90 ├── Makefile ├── REAL_complex_real.F90 ├── SIN_complex_complex.F90 └── SQRT_complex_complex.F90 └── F77-target ├── ACOS_double_precision_double_precision.F90 ├── ACOS_real_real.F90 ├── AINT_double_precision_double_precision.F90 ├── AINT_real_real.F90 ├── AMAX0_integer_integer_real.F90 ├── AMAX1_real_real_real.F90 ├── AMIN0_integer_integer_real.F90 ├── AMIN1_real_real_real.F90 ├── ANINT_double_precision_double_precision.F90 ├── ANINT_real_real.F90 ├── ASIN_double_precision_double_precision.F90 ├── ASIN_real_real.F90 ├── ATAN2_double_precision_double_precision_double_precision.F90 ├── ATAN2_real_real_real.F90 ├── ATAN_double_precision_double_precision.F90 ├── ATAN_real_real.F90 ├── CEILING_double_precision_double_precision.F90 ├── CEILING_real_real.F90 ├── COSH_double_precision_double_precision.F90 ├── COSH_real_real.F90 ├── COS_double_precision_double_precision.F90 ├── COS_real_real.F90 ├── DIM_double_precision_double_precision_double_precision.F90 ├── DIM_integer_integer_integer.F90 ├── DIM_real_real_real.F90 ├── DMAX1_double_precision_double_precision_double_precision.F90 ├── DMIN1_double_precision_double_precision_double_precision.F90 ├── DPROD_real_real_double_precision.F90 ├── FLOAT_integer_real.F90 ├── FLOOR_double_precision_double_precision.F90 ├── FLOOR_real_real.F90 ├── IDINT_double_precision_integer.F90 ├── IFIX_real_integer.F90 ├── LOG10_double_precision_double_precision.F90 ├── LOG10_real_real.F90 ├── MAX0_integer_integer_integer.F90 ├── MAX1_real_real_integer.F90 ├── MAX_double_precision_double_precision_double_precision.F90 ├── MAX_integer_integer_integer.F90 ├── MAX_real_real_real.F90 ├── MIN0_integer_integer_integer.F90 ├── MIN1_real_real_integer.F90 ├── MIN_double_precision_double_precision_double_precision.F90 ├── MIN_integer_integer_integer.F90 ├── MIN_real_real_real.F90 ├── MODULO_double_precision_double_precision_double_precision.F90 ├── MODULO_integer_integer_integer.F90 ├── MODULO_real_real_real.F90 ├── MOD_double_precision_double_precision_double_precision.F90 ├── MOD_integer_integer_integer.F90 ├── MOD_real_real_real.F90 ├── Makefile ├── NINT_double_precision_integer.F90 ├── NINT_real_integer.F90 ├── SIGN_double_precision_double_precision_double_precision.F90 ├── SIGN_integer_integer_integer.F90 ├── SIGN_real_real_real.F90 ├── SINH_double_precision_double_precision.F90 ├── SINH_real_real.F90 ├── SIN_double_precision_double_precision.F90 ├── SIN_real_real.F90 ├── SNGL_double_precision_real.F90 ├── TANH_double_precision_double_precision.F90 ├── TANH_real_real.F90 ├── TAN_double_precision_double_precision.F90 └── TAN_real_real.F90 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/README.md -------------------------------------------------------------------------------- /documentation/FP_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/documentation/FP_error.md -------------------------------------------------------------------------------- /documentation/OvO_presentation_20-05-20.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/documentation/OvO_presentation_20-05-20.pdf -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/documentation/README.md -------------------------------------------------------------------------------- /ovo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/ovo.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | tabulate 3 | -------------------------------------------------------------------------------- /src/config/cmath_complex_synopsis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/config/cmath_complex_synopsis.json -------------------------------------------------------------------------------- /src/config/cmath_synopsis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/config/cmath_synopsis.json -------------------------------------------------------------------------------- /src/config/fmath_synopsis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/config/fmath_synopsis.json -------------------------------------------------------------------------------- /src/config/omp_struct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/config/omp_struct.json -------------------------------------------------------------------------------- /src/gtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/gtest.py -------------------------------------------------------------------------------- /src/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/report.py -------------------------------------------------------------------------------- /src/sanity_check/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/sanity_check/Makefile -------------------------------------------------------------------------------- /src/sanity_check/implicit_mapping_double_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/sanity_check/implicit_mapping_double_complex.cpp -------------------------------------------------------------------------------- /src/sanity_check/implicit_mapping_float_complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/sanity_check/implicit_mapping_float_complex.cpp -------------------------------------------------------------------------------- /src/tabulate_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/tabulate_local.py -------------------------------------------------------------------------------- /src/tabulate_local_pre36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/tabulate_local_pre36.py -------------------------------------------------------------------------------- /src/template/Makefile.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/template/Makefile.jinja2 -------------------------------------------------------------------------------- /src/template/hierarchical_parallelism.F90.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/template/hierarchical_parallelism.F90.jinja2 -------------------------------------------------------------------------------- /src/template/hierarchical_parallelism.cpp.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/template/hierarchical_parallelism.cpp.jinja2 -------------------------------------------------------------------------------- /src/template/mathematical_function.F90.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/template/mathematical_function.F90.jinja2 -------------------------------------------------------------------------------- /src/template/mathematical_function.cpp.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/template/mathematical_function.cpp.jinja2 -------------------------------------------------------------------------------- /src/template/ovo_usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/src/template/ovo_usage.txt -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/Makefile -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target__teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/atomic_add-float/target_teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/Makefile -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target__teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams__distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams__distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-complex_double/target_teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/Makefile -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute_parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute_parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target__teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams__distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/memcopy-float/target_teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/Makefile -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target__teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-complex_double/target_teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/Makefile -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target__teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel__for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel__for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel__for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel__for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel_for__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel_for__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel_for_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams__parallel_for_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute__parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute__parallel.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute__simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute__simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute_parallel_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute_parallel_for.cpp -------------------------------------------------------------------------------- /test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/hierarchical_parallelism/reduction_add-float/target_teams_distribute_simd.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/Makefile -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/acos_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/acos_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/acos_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/acos_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/acosh_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/acosh_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/acosh_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/acosh_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/asin_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/asin_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/asin_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/asin_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/asinh_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/asinh_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/asinh_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/asinh_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/atan_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/atan_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/atan_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/atan_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/atanh_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/atanh_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/atanh_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/atanh_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/cos_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/cos_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/cos_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/cos_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/cosh_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/cosh_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/cosh_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/cosh_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/exp_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/exp_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/exp_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/exp_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/log10_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/log10_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/log10_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/log10_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/log_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/log_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/log_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/log_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/sin_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/sin_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/sin_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/sin_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/sinh_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/sinh_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/sinh_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/sinh_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/sqrt_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/sqrt_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/sqrt_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/sqrt_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/tan_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/tan_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/tan_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/tan_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/tanh_complex_double_complex_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/tanh_complex_double_complex_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target-complex/tanh_complex_float_complex_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target-complex/tanh_complex_float_complex_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/Makefile -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/abs_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/abs_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/abs_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/abs_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/abs_int_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/abs_int_int.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/acos_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/acos_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/acos_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/acos_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/acosf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/acosf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/acosh_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/acosh_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/acosh_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/acosh_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/acoshf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/acoshf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/asin_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/asin_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/asin_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/asin_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/asinf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/asinf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/asinh_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/asinh_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/asinh_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/asinh_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/asinhf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/asinhf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atan2_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atan2_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atan2_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atan2_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atan2f_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atan2f_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atan_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atan_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atan_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atan_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atanf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atanf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atanh_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atanh_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atanh_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atanh_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/atanhf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/atanhf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cbrt_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cbrt_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cbrt_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cbrt_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cbrtf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cbrtf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ceil_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ceil_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ceil_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ceil_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ceilf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ceilf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/copysign_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/copysign_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/copysign_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/copysign_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/copysignf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/copysignf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cos_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cos_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cos_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cos_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cosf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cosf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cosh_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cosh_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/cosh_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/cosh_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/coshf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/coshf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/erf_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/erf_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/erf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/erf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/erfc_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/erfc_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/erfc_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/erfc_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/erfcf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/erfcf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/erff_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/erff_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/exp2_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/exp2_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/exp2_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/exp2_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/exp2f_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/exp2f_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/exp_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/exp_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/exp_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/exp_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/expf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/expf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/expm1_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/expm1_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/expm1_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/expm1_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/expm1f_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/expm1f_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fabs_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fabs_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fabs_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fabs_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fabsf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fabsf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fdim_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fdim_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fdim_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fdim_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fdimf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fdimf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/floor_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/floor_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/floor_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/floor_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/floorf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/floorf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fma_double_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fma_double_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fma_float_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fma_float_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmaf_float_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmaf_float_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmax_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmax_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmax_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmax_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmaxf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmaxf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmin_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmin_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmin_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmin_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fminf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fminf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmod_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmod_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmod_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmod_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fmodf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fmodf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fpclassify_double_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fpclassify_double_int.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/fpclassify_float_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/fpclassify_float_int.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/frexp_double_int_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/frexp_double_int_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/frexp_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/frexp_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/frexpf_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/frexpf_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/hypot_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/hypot_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/hypot_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/hypot_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/hypotf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/hypotf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ilogb_double_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ilogb_double_int.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ilogb_float_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ilogb_float_int.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ilogbf_float_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ilogbf_float_int.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isfinite_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isfinite_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isfinite_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isfinite_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isgreater_double_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isgreater_double_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isgreater_float_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isgreater_float_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isgreaterequal_double_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isgreaterequal_double_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isgreaterequal_float_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isgreaterequal_float_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isinf_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isinf_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isinf_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isinf_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isless_double_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isless_double_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isless_float_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isless_float_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/islessequal_double_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/islessequal_double_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/islessequal_float_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/islessequal_float_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/islessgreater_double_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/islessgreater_double_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/islessgreater_float_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/islessgreater_float_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isnan_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isnan_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isnan_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isnan_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isnormal_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isnormal_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isnormal_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isnormal_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isunordered_double_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isunordered_double_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/isunordered_float_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/isunordered_float_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ldexp_double_int_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ldexp_double_int_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ldexp_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ldexp_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/ldexpf_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/ldexpf_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/lgamma_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/lgamma_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/lgamma_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/lgamma_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/lgammaf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/lgammaf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log10_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log10_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log10_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log10_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log10f_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log10f_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log1p_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log1p_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log1p_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log1p_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log1pf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log1pf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log2_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log2_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log2_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log2_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log2f_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log2f_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/log_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/log_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/logb_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/logb_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/logb_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/logb_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/logbf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/logbf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/logf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/logf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/modf_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/modf_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/modf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/modf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/modff_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/modff_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/nearbyint_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/nearbyint_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/nearbyint_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/nearbyint_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/nearbyintf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/nearbyintf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/nextafter_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/nextafter_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/nextafter_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/nextafter_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/nextafterf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/nextafterf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/pow_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/pow_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/pow_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/pow_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/powf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/powf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/remainder_double_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/remainder_double_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/remainder_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/remainder_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/remainderf_float_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/remainderf_float_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/remquo_double_double_int_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/remquo_double_double_int_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/remquo_float_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/remquo_float_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/remquof_float_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/remquof_float_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/rint_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/rint_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/rint_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/rint_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/rintf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/rintf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/round_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/round_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/round_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/round_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/roundf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/roundf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/scalbn_double_int_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/scalbn_double_int_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/scalbn_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/scalbn_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/scalbnf_float_int_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/scalbnf_float_int_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/signbit_double_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/signbit_double_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/signbit_float_bool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/signbit_float_bool.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sin_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sin_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sin_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sin_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sinf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sinf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sinh_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sinh_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sinh_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sinh_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sinhf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sinhf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sqrt_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sqrt_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sqrt_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sqrt_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/sqrtf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/sqrtf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tan_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tan_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tan_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tan_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tanf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tanf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tanh_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tanh_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tanh_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tanh_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tanhf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tanhf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tgamma_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tgamma_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tgamma_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tgamma_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/tgammaf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/tgammaf_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/trunc_double_double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/trunc_double_double.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/trunc_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/trunc_float_float.cpp -------------------------------------------------------------------------------- /test_src/cpp/mathematical_function/cpp11-target/truncf_float_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/cpp/mathematical_function/cpp11-target/truncf_float_float.cpp -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/Makefile -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__distribute__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__distribute__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams__parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target__teams_distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams__parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/atomic_add-real/target_teams_distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/Makefile -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target__teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-double_complex/target_teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/Makefile -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams__distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams__distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute_parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute_parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target__teams_distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams__distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams__distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams__distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams__distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute_parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute_parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/memcopy-real/target_teams_distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/Makefile -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__teams.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target__teams.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_teams.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-double_complex/target_teams.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/Makefile -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams_distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams_distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams_distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target__teams_distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel__do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel__do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel_do__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel_do__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel__do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel__do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel_do.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel_do.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel_do_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams__parallel_do_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams_distribute.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams_distribute.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams_distribute__simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams_distribute__simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams_distribute_simd.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/hierarchical_parallelism/reduction_add-real/target_teams_distribute_simd.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/ABS_complex_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/ABS_complex_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/AIMAG_complex_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/AIMAG_complex_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/CMPLX_complex_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/CMPLX_complex_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/CMPLX_integer_integer_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/CMPLX_integer_integer_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/CMPLX_real_real_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/CMPLX_real_real_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/CONJG_complex_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/CONJG_complex_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/COS_complex_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/COS_complex_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/DBLE_complex_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/DBLE_complex_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/EXP_complex_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/EXP_complex_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/INT_complex_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/INT_complex_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/LOG_complex_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/LOG_complex_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/Makefile -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/REAL_complex_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/REAL_complex_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/SIN_complex_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/SIN_complex_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target-complex/SQRT_complex_complex.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target-complex/SQRT_complex_complex.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ACOS_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ACOS_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ACOS_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ACOS_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/AINT_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/AINT_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/AINT_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/AINT_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/AMAX0_integer_integer_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/AMAX0_integer_integer_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/AMAX1_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/AMAX1_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/AMIN0_integer_integer_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/AMIN0_integer_integer_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/AMIN1_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/AMIN1_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ANINT_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ANINT_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ANINT_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ANINT_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ASIN_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ASIN_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ASIN_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ASIN_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ATAN2_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ATAN2_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ATAN_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ATAN_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/ATAN_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/ATAN_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/CEILING_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/CEILING_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/CEILING_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/CEILING_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/COSH_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/COSH_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/COSH_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/COSH_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/COS_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/COS_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/COS_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/COS_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/DIM_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/DIM_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/DIM_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/DIM_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/DPROD_real_real_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/DPROD_real_real_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/FLOAT_integer_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/FLOAT_integer_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/FLOOR_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/FLOOR_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/FLOOR_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/FLOOR_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/IDINT_double_precision_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/IDINT_double_precision_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/IFIX_real_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/IFIX_real_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/LOG10_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/LOG10_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/LOG10_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/LOG10_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MAX0_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MAX0_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MAX1_real_real_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MAX1_real_real_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MAX_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MAX_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MAX_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MAX_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MIN0_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MIN0_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MIN1_real_real_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MIN1_real_real_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MIN_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MIN_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MIN_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MIN_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MODULO_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MODULO_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MODULO_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MODULO_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MOD_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MOD_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/MOD_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/MOD_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/Makefile -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/NINT_double_precision_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/NINT_double_precision_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/NINT_real_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/NINT_real_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/SIGN_integer_integer_integer.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/SIGN_integer_integer_integer.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/SIGN_real_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/SIGN_real_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/SINH_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/SINH_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/SINH_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/SINH_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/SIN_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/SIN_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/SIN_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/SIN_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/SNGL_double_precision_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/SNGL_double_precision_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/TANH_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/TANH_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/TANH_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/TANH_real_real.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/TAN_double_precision_double_precision.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/TAN_double_precision_double_precision.F90 -------------------------------------------------------------------------------- /test_src/fortran/mathematical_function/F77-target/TAN_real_real.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TApplencourt/OvO/HEAD/test_src/fortran/mathematical_function/F77-target/TAN_real_real.F90 --------------------------------------------------------------------------------