Changes between Version 61 and Version 62 of Next-GenOpenMPTransformation


Ignore:
Timestamp:
11/21/19 12:45:28 (6 years ago)
Author:
wuwenhao
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Next-GenOpenMPTransformation

    v61 v62  
    9898
    9999== OpenMP Types ==
    100 * `omp_lock_t` . . . . . . . . . . . . . . . [Unsupported]
     100* `omp_lock_t` ([https://vsl.cis.udel.edu/trac/civl/browser/CIVL/trunk/src/include/civl/omp.cvl omp.cvl])
    101101
    102102== OpenMP Runtime Library Routines ==
    103103=== Execution Environment Routines ===
    104 * `omp_get_max_threads()`
    105 * `omp_get_num_threads()`
    106 * `omp_set_num_threads()`
    107 * `omp_get_thread_num()`
     104* `omp_get_max_threads()` (translated as `_omp_thread_max`)
     105* `omp_get_num_threads()` (translated as `_omp_nthreads`)
     106* `omp_set_num_threads(int x)` (translated as `_omp_num_threads =`/x/)
     107* `omp_get_thread_num()`(translated as `_omp_tid`)
    108108=== Lock Routines ===
     109see ([https://vsl.cis.udel.edu/trac/civl/browser/CIVL/trunk/src/include/civl/omp.cvl omp.cvl])
    109110==== OpenMP Simple Lock ====
    110 * `omp_init_lock`
    111 * `omp_destroy_lock`
    112 * `omp_set_lock` . . . . . . . . . . . . . [Unsupported]
    113 * `omp_unset_lock` . . . . . . . . . . . .[Unsupported]
    114 * `omp_test_lock` . . . . . . . . . . . . [Unsupported]
     111* `omp_init_lock(omp_lock_t *)`
     112* `omp_destroy_lock(omp_lock_t *)`
     113* `omp_set_lock(omp_lock_t *)`
     114* `omp_unset_lock(omp_lock_t *)`
     115* `omp_test_lock(omp_lock_t *)`
    115116=== Timing Routines ===
    116 * `omp_get_wtime()` . . . . . . . . . . .[Unsupported]
     117* `omp_get_wtime()` ([https://vsl.cis.udel.edu/trac/civl/browser/CIVL/trunk/src/include/civl/omp.cvl omp.cvl])
    117118
    118119== Plan ==