1
1

Update OPAL DDT variable names

These variables were renamed in
904276bb44caec207638247f23139bc21bc6a09e; update them to use the new
names.

Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
(cherry picked from commit 2ab8109be15a7739caa72ec8f863e8e01c2c9a0f)
Этот коммит содержится в:
Jeff Squyres 2019-08-27 11:55:03 -07:00
родитель 83f6c57df6
Коммит 8b3fd5682f
2 изменённых файлов: 12 добавлений и 12 удалений

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

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

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

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