Changes between Version 61 and Version 62 of Next-GenOpenMPTransformation
- Timestamp:
- 11/21/19 12:45:28 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Next-GenOpenMPTransformation
v61 v62 98 98 99 99 == 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]) 101 101 102 102 == OpenMP Runtime Library Routines == 103 103 === 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`) 108 108 === Lock Routines === 109 see ([https://vsl.cis.udel.edu/trac/civl/browser/CIVL/trunk/src/include/civl/omp.cvl omp.cvl]) 109 110 ==== 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 *)` 115 116 === 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]) 117 118 118 119 == Plan ==
