1
1

As was previously decided, "common" blocks are vanilla shared

libraries -- not components.  So they shouldn't show up in ompi_info.

This commit was SVN r2318.
Этот коммит содержится в:
Jeff Squyres 2004-08-27 09:19:11 +00:00
родитель f1ab634fab
Коммит 07d9849e62
2 изменённых файлов: 0 добавлений и 10 удалений

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

@ -100,14 +100,6 @@ void ompi_info::open_components()
mca_coll_base_open();
component_map["coll"] = &mca_coll_base_components_opened;
#if 0
// common component framework not implemented yet
mca_common_base_open();
component_map["common"] = &mca_common_base_components_opened;
#else
component_map["common"] = NULL;
#endif
mca_gpr_base_open();
component_map["gpr"] = &mca_gpr_base_components_available;

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

@ -119,7 +119,6 @@ int main(int argc, char *argv[])
ompi_info::mca_types.push_back("allocator");
ompi_info::mca_types.push_back("coll");
ompi_info::mca_types.push_back("common");
ompi_info::mca_types.push_back("gpr");
ompi_info::mca_types.push_back("io");
ompi_info::mca_types.push_back("llm");
@ -175,7 +174,6 @@ int main(int argc, char *argv[])
ompi_info::show_component_version("base", component_all, ver_full, type_all);
ompi_info::show_component_version("allocator", component_all, ver_full, type_all);
ompi_info::show_component_version("coll", component_all, ver_full, type_all);
ompi_info::show_component_version("common", component_all, ver_full, type_all);
ompi_info::show_component_version("gpr", component_all, ver_full, type_all);
ompi_info::show_component_version("io", component_all, ver_full, type_all);
ompi_info::show_component_version("llm", component_all, ver_full, type_all);