1
1

Merge pull request #6937 from jsquyres/pr/remove-non-existent-symbols-in-tests

Update OPAL DDT variable names
Этот коммит содержится в:
Jeff Squyres 2019-08-27 15:58:04 -04:00 коммит произвёл GitHub
родитель 8b6f2d95ba 2ab8109be1
Коммит b846028622
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -200,9 +200,9 @@ static void dump_ldi( ddt_ldi_t* buffer, int start_pos, int end_pos )
#endif #endif
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0) #if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
extern bool opal_unpack_debug; extern bool opal_ddt_unpack_debug;
extern bool opal_pack_debug; extern bool opal_ddt_pack_debug;
extern bool opal_position_debug ; extern bool opal_ddt_position_debug ;
#endif /* OPAL_ENABLE_DEBUG */ #endif /* OPAL_ENABLE_DEBUG */
static char* bytes_dump( void* src, size_t cnt ) static char* bytes_dump( void* src, size_t cnt )
@ -238,9 +238,9 @@ int main( int argc, char* argv[] )
ompi_datatype_init(); ompi_datatype_init();
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0) #if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
opal_unpack_debug = false; opal_ddt_unpack_debug = false;
opal_pack_debug = false; opal_ddt_pack_debug = false;
opal_position_debug = false; opal_ddt_position_debug = false;
#endif /* OPAL_ENABLE_DEBUG */ #endif /* OPAL_ENABLE_DEBUG */
create_segments( datatype, data_count, fragment_size, create_segments( datatype, data_count, fragment_size,

Просмотреть файл

@ -181,9 +181,9 @@ unpack_segments( ompi_datatype_t* datatype, int count,
} }
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0) #if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
extern bool opal_unpack_debug; extern bool opal_ddt_unpack_debug;
extern bool opal_pack_debug; extern bool opal_ddt_pack_debug;
extern bool opal_position_debug ; extern bool opal_ddt_position_debug ;
#endif /* OPAL_ENABLE_DEBUG */ #endif /* OPAL_ENABLE_DEBUG */
int main( int argc, char* argv[] ) int main( int argc, char* argv[] )
@ -209,9 +209,9 @@ int main( int argc, char* argv[] )
ompi_datatype_commit(&datatype); ompi_datatype_commit(&datatype);
#if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0) #if (OPAL_ENABLE_DEBUG == 1) && (OPAL_C_HAVE_VISIBILITY == 0)
opal_unpack_debug = false; opal_ddt_unpack_debug = false;
opal_pack_debug = false; opal_ddt_pack_debug = false;
opal_position_debug = false; opal_ddt_position_debug = false;
#endif /* OPAL_ENABLE_DEBUG */ #endif /* OPAL_ENABLE_DEBUG */
create_segments( datatype, 1, fragment_size, create_segments( datatype, 1, fragment_size,