summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/src
diff options
context:
space:
mode:
authorAndrey Churbanov <Andrey.Churbanov@intel.com>2015-01-29 17:14:58 +0000
committerAndrey Churbanov <Andrey.Churbanov@intel.com>2015-01-29 17:14:58 +0000
commit5cd50e3c0ad5c117f28f7d79e24433316739c357 (patch)
treeb1cd81a4d661a11f1ee9a2c8a17d64f48506dbb1 /openmp/runtime/src
parenta1849af4a98ad567d0bf0ddc51e5c8acabbe507f (diff)
downloadbcm5719-llvm-5cd50e3c0ad5c117f28f7d79e24433316739c357.tar.gz
bcm5719-llvm-5cd50e3c0ad5c117f28f7d79e24433316739c357.zip
enable environment variable KMP_PLACE_THREADS also for non-MIC architectures
llvm-svn: 227467
Diffstat (limited to 'openmp/runtime/src')
-rw-r--r--openmp/runtime/src/kmp.h4
-rw-r--r--openmp/runtime/src/kmp_affinity.cpp13
-rw-r--r--openmp/runtime/src/kmp_csupport.c2
-rw-r--r--openmp/runtime/src/kmp_global.c2
-rw-r--r--openmp/runtime/src/kmp_settings.c4
5 files changed, 4 insertions, 21 deletions
diff --git a/openmp/runtime/src/kmp.h b/openmp/runtime/src/kmp.h
index 7be619eaaa1..97d9a6632db 100644
--- a/openmp/runtime/src/kmp.h
+++ b/openmp/runtime/src/kmp.h
@@ -782,11 +782,9 @@ typedef enum kmp_cancel_kind_t {
} kmp_cancel_kind_t;
#endif // OMP_40_ENABLED
-#if KMP_MIC
extern unsigned int __kmp_place_num_cores;
extern unsigned int __kmp_place_num_threads_per_core;
extern unsigned int __kmp_place_core_offset;
-#endif
/* ------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------ */
@@ -2578,7 +2576,7 @@ extern int __kmp_bt_intervals; /* number of monitor timestamp intervals
extern int __kmp_zero_bt; /* whether blocktime has been forced to zero */
#endif /* KMP_ADJUST_BLOCKTIME */
#ifdef KMP_DFLT_NTH_CORES
-extern int __kmp_ncores; /* Number of physical procs in HT machine */
+extern int __kmp_ncores; /* Total number of cores for threads placement */
#endif
extern int __kmp_abort_delay; /* Number of millisecs to delay on abort for VTune */
diff --git a/openmp/runtime/src/kmp_affinity.cpp b/openmp/runtime/src/kmp_affinity.cpp
index e1962d1d2f4..b16b458d215 100644
--- a/openmp/runtime/src/kmp_affinity.cpp
+++ b/openmp/runtime/src/kmp_affinity.cpp
@@ -3327,9 +3327,6 @@ __kmp_affinity_process_placelist(kmp_affin_mask_t **out_masks,
#undef ADD_MASK
#undef ADD_MASK_OSID
-
-# if KMP_MIC
-
static void
__kmp_apply_thread_places(AddrUnsPair **pAddr, int depth)
{
@@ -3350,7 +3347,7 @@ __kmp_apply_thread_places(AddrUnsPair **pAddr, int depth)
if ( __kmp_place_num_threads_per_core == 0 ) {
__kmp_place_num_threads_per_core = __kmp_nThreadsPerCore; // use all HW contexts
}
- if ( __kmp_place_core_offset + __kmp_place_num_cores > nCoresPerPkg ) {
+ if ( __kmp_place_core_offset + __kmp_place_num_cores > (unsigned int)nCoresPerPkg ) {
KMP_WARNING( AffThrPlaceManyCores );
return;
}
@@ -3360,11 +3357,11 @@ __kmp_apply_thread_places(AddrUnsPair **pAddr, int depth)
int i, j, k, n_old = 0, n_new = 0;
for ( i = 0; i < nPackages; ++i ) {
for ( j = 0; j < nCoresPerPkg; ++j ) {
- if ( j < __kmp_place_core_offset || j >= __kmp_place_core_offset + __kmp_place_num_cores ) {
+ if ( (unsigned int)j < __kmp_place_core_offset || (unsigned int)j >= __kmp_place_core_offset + __kmp_place_num_cores ) {
n_old += __kmp_nThreadsPerCore; // skip not-requested core
} else {
for ( k = 0; k < __kmp_nThreadsPerCore; ++k ) {
- if ( k < __kmp_place_num_threads_per_core ) {
+ if ( (unsigned int)k < __kmp_place_num_threads_per_core ) {
newAddr[n_new] = (*pAddr)[n_old]; // copy requested core' data to new location
n_new++;
}
@@ -3382,8 +3379,6 @@ __kmp_apply_thread_places(AddrUnsPair **pAddr, int depth)
*pAddr = newAddr; // replace old topology with new one
}
-# endif /* KMP_MIC */
-
static AddrUnsPair *address2os = NULL;
static int * procarr = NULL;
@@ -3705,9 +3700,7 @@ __kmp_aux_affinity_initialize(void)
return;
}
-# if KMP_MIC
__kmp_apply_thread_places(&address2os, depth);
-# endif
//
// Create the table of masks, indexed by thread Id.
diff --git a/openmp/runtime/src/kmp_csupport.c b/openmp/runtime/src/kmp_csupport.c
index 473411de86a..4909bd9ed00 100644
--- a/openmp/runtime/src/kmp_csupport.c
+++ b/openmp/runtime/src/kmp_csupport.c
@@ -2157,14 +2157,12 @@ __kmpc_get_parent_taskid() {
void __kmpc_place_threads(int nC, int nT, int nO)
{
-#if KMP_MIC
if ( ! __kmp_init_serial ) {
__kmp_serial_initialize();
}
__kmp_place_num_cores = nC;
__kmp_place_num_threads_per_core = nT;
__kmp_place_core_offset = nO;
-#endif
}
// end of file //
diff --git a/openmp/runtime/src/kmp_global.c b/openmp/runtime/src/kmp_global.c
index 5dae4115932..6075701468b 100644
--- a/openmp/runtime/src/kmp_global.c
+++ b/openmp/runtime/src/kmp_global.c
@@ -249,11 +249,9 @@ kmp_nested_proc_bind_t __kmp_nested_proc_bind = { NULL, 0, 0 };
int __kmp_affinity_num_places = 0;
#endif
-#if KMP_MIC
unsigned int __kmp_place_num_cores = 0;
unsigned int __kmp_place_num_threads_per_core = 0;
unsigned int __kmp_place_core_offset = 0;
-#endif
kmp_tasking_mode_t __kmp_tasking_mode = tskm_task_teams;
diff --git a/openmp/runtime/src/kmp_settings.c b/openmp/runtime/src/kmp_settings.c
index bbc147df620..743ba035c4b 100644
--- a/openmp/runtime/src/kmp_settings.c
+++ b/openmp/runtime/src/kmp_settings.c
@@ -4205,7 +4205,6 @@ __kmp_stg_print_speculative_statsfile( kmp_str_buf_t * buffer, char const * name
#endif // KMP_USE_ADAPTIVE_LOCKS
-#if KMP_MIC
// -------------------------------------------------------------------------------------------------
// KMP_PLACE_THREADS
// -------------------------------------------------------------------------------------------------
@@ -4343,7 +4342,6 @@ __kmp_stg_print_place_threads( kmp_str_buf_t * buffer, char const * name, void *
*/
}
}
-#endif
#if USE_ITT_BUILD
// -------------------------------------------------------------------------------------------------
@@ -4561,9 +4559,7 @@ static kmp_setting_t __kmp_stg_table[] = {
{ "KMP_SPECULATIVE_STATSFILE", __kmp_stg_parse_speculative_statsfile,__kmp_stg_print_speculative_statsfile, NULL, 0, 0 },
#endif
#endif // KMP_USE_ADAPTIVE_LOCKS
-#if KMP_MIC
{ "KMP_PLACE_THREADS", __kmp_stg_parse_place_threads, __kmp_stg_print_place_threads, NULL, 0, 0 },
-#endif
#if USE_ITT_BUILD
{ "KMP_FORKJOIN_FRAMES", __kmp_stg_parse_forkjoin_frames, __kmp_stg_print_forkjoin_frames, NULL, 0, 0 },
{ "KMP_FORKJOIN_FRAMES_MODE", __kmp_stg_parse_forkjoin_frames_mode,__kmp_stg_print_forkjoin_frames_mode, NULL, 0, 0 },
OpenPOWER on IntegriCloud