Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions oshmem/proc/proc_group_cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ int cache_group(oshmem_group_t *group,
} else {
#if ABORT_ON_CACHE_OVERFLOW
opal_output(0,
"error: group cache overflow on rank %i: cache_size = %u: try encreasing oshmem_group_cache_size mca parameter",
"error: group cache overflow on rank %i: cache_size = %u: try increasing oshmem_proc_group_cache_size mca parameter",
group->my_pe,
oshmem_group_cache_size);
oshmem_shmem_abort(-1);
Expand All @@ -76,7 +76,7 @@ int cache_group(oshmem_group_t *group,
int oshmem_group_cache_list_init(void)
{
int mca_value;
int cache_size_default = 100;
int cache_size_default = 1000;
OBJ_CONSTRUCT(&oshmem_group_cache_list, opal_list_t);

mca_value = cache_size_default;
Expand All @@ -94,7 +94,7 @@ int oshmem_group_cache_list_init(void)
&mca_value);
if (mca_value < 0) {
opal_output(0,
"error: oshmem_group_cache_size mca parameter was set to %i while it has to be positive value. Default value %i will be used.",
"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.",
mca_value,
cache_size_default);
mca_value = cache_size_default;
Expand Down