Skip to content

Commit ba6b340

Browse files
committed
oshmem: increase group cache size to 1000
and fix typos in help messages Signed-off-by: Alex Mikheev <[email protected]> (cherry picked from commit 03a094b)
1 parent b6e825f commit ba6b340

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

oshmem/proc/proc_group_cache.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ int cache_group(oshmem_group_t *group,
5858
} else {
5959
#if ABORT_ON_CACHE_OVERFLOW
6060
opal_output(0,
61-
"error: group cache overflow on rank %i: cache_size = %u: try encreasing oshmem_group_cache_size mca parameter",
61+
"error: group cache overflow on rank %i: cache_size = %u: try increasing oshmem_proc_group_cache_size mca parameter",
6262
group->my_pe,
6363
oshmem_group_cache_size);
6464
oshmem_shmem_abort(-1);
@@ -76,7 +76,7 @@ int cache_group(oshmem_group_t *group,
7676
int oshmem_group_cache_list_init(void)
7777
{
7878
int mca_value;
79-
int cache_size_default = 100;
79+
int cache_size_default = 1000;
8080
OBJ_CONSTRUCT(&oshmem_group_cache_list, opal_list_t);
8181

8282
mca_value = cache_size_default;
@@ -94,7 +94,7 @@ int oshmem_group_cache_list_init(void)
9494
&mca_value);
9595
if (mca_value < 0) {
9696
opal_output(0,
97-
"error: oshmem_group_cache_size mca parameter was set to %i while it has to be positive value. Default value %i will be used.",
97+
"error: oshmem_proc_group_cache_size mca parameter was set to %i while it has to be positive value. Default value %i will be used.",
9898
mca_value,
9999
cache_size_default);
100100
mca_value = cache_size_default;

0 commit comments

Comments
 (0)