Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core] Improve performance in GenerateEntitiesFromConnectivities #12348

Merged
Merged
Show file tree
Hide file tree
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
63 changes: 63 additions & 0 deletions kratos/tests/cpp_tests/utilities/test_model_part_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
//

// System includes
#include <chrono>

// External includes

Expand Down Expand Up @@ -122,4 +123,66 @@ KRATOS_TEST_CASE_IN_SUITE(ModelPartUtilsFromConnectivityGenerateElements, Kratos
}
}

KRATOS_TEST_CASE_IN_SUITE(ModelPartUtilsFromConnectivityGenerateElementsBenchmark, KratosCoreFastSuite)
{
Model current_model;
ModelPart& r_model_part = current_model.CreateModelPart("Main");

// Adding STL chrono
std::chrono::time_point<std::chrono::high_resolution_clock> start, end;

// Generate a huge number of consecutive points
std::size_t number_of_points = 4e5;
for (std::size_t i = 0; i < number_of_points; ++i) {
r_model_part.CreateNewNode(i + 1, 1.0 * i, 0.0, 0.0);
}

// Generate line elements
r_model_part.CreateNewProperties(1);
std::size_t number_of_elements = number_of_points - 1;
std::vector<std::size_t> properties_ids(number_of_elements);
std::vector<std::size_t> elements_ids(number_of_elements);
std::vector<std::vector<std::size_t>> connectivities(number_of_elements);
for (std::size_t i = 0; i < number_of_elements; ++i) {
elements_ids[i] = i + 1;
properties_ids[i] = 1;
connectivities[i].resize(2);
connectivities[i][0] = i + 1;
connectivities[i][1] = i + 2;
}

// Define start
start = std::chrono::high_resolution_clock::now();

ModelPartUtils::GenerateEntitiesFromConnectivities<Element>(
"Element2D2N",
connectivities,
r_model_part.Nodes(),
r_model_part.Elements(),
nullptr
);

// Define end
end = std::chrono::high_resolution_clock::now();

// Measure time
const double duration = std::chrono::duration<double>(end - start).count();
KRATOS_INFO("ModelPartUtilsFromConnectivityGenerateElementsBenchmark") << "Duration = " << duration << " s" << std::endl;

// Now create manually the elements
r_model_part.Elements().clear();
start = std::chrono::high_resolution_clock::now();
for (std::size_t i = 0; i < number_of_elements; ++i) {
r_model_part.CreateNewElement("Element2D2N", elements_ids[i], connectivities[i], r_model_part.pGetProperties(1));
}
end = std::chrono::high_resolution_clock::now();

// Measure time
const double duration_manual = std::chrono::duration<double>(end - start).count();
KRATOS_INFO("ModelPartUtilsFromConnectivityGenerateElementsBenchmark") << "Duration manual = " << duration_manual << " s" << std::endl;

// Check
KRATOS_EXPECT_LT(duration, duration_manual);
}

} // namespace Kratos::Testing.
56 changes: 34 additions & 22 deletions kratos/utilities/model_part_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class ModelPartUtils
}
}

/**
/**
* @brief Add nodes to ModelPart from an ordered container.
* @details By assuming that the input is ordered (by increasing Id), the nodes can be added more efficiently. Note that the function makes no check of the ordering, it is the responsability of the caller to ensure that it is correct.
* @tparam TIteratorType Iterator type for the nodes to add.
Expand Down Expand Up @@ -150,30 +150,37 @@ class ModelPartUtils
)
{
// Some definitions
const std::size_t current_size = rThisEntities.size();
const std::size_t number_of_entities = rEntitiesConnectivities.size();
rThisEntities.reserve(current_size + number_of_entities);

// Number of nodes per entity
const std::size_t number_of_nodes_per_entity = rPrototypeEntity.GetGeometry().size();

const std::size_t current_size = rThisEntities.size();
rThisEntities.reserve(current_size + number_of_entities);

// Define a TLS struct to store the entity nodes
struct TLS {
TLS (const std::size_t NumberEntities) : entity_nodes(NumberEntities) {}
typename TEntity::NodesArrayType entity_nodes;
};

// From connectivities generate entities
const auto entities_vector = IndexPartition<IndexType>(number_of_entities).for_each<AccumReduction<typename TEntity::Pointer>>([&](const IndexType i) {
typename TEntity::NodesArrayType temp_entity_nodes;
temp_entity_nodes.reserve(number_of_nodes_per_entity);
for(std::size_t j = 0; j < number_of_nodes_per_entity; ++j){
const std::size_t node_id = rEntitiesConnectivities[i][j];
const auto entities_vector = IndexPartition<IndexType>(number_of_entities).for_each<AccumReduction<typename TEntity::Pointer>>(TLS(number_of_nodes_per_entity), [&](const IndexType i, TLS& rTLS) {
const auto& r_nodes_ids = rEntitiesConnectivities[i];
for(std::size_t j = 0; j < number_of_nodes_per_entity; ++j) {
const std::size_t node_id = r_nodes_ids[j];
auto it_node = rThisNodes.find(node_id);
KRATOS_ERROR_IF(it_node == rThisNodes.end()) << "Node with Id " << node_id << " does not exist in the nodes array." << std::endl;
temp_entity_nodes.push_back(*(it_node.base()));
rTLS.entity_nodes(j) = *(it_node.base());
}

// Add the entity to the list
return rPrototypeEntity.Create(i + 1, temp_entity_nodes, pProperties);
return rPrototypeEntity.Create(i + 1, rTLS.entity_nodes, pProperties);
});

// Add the entities to the list
rThisEntities.insert(entities_vector.begin(), entities_vector.end());
for (std::size_t i = 0; i < number_of_entities; ++i) {
rThisEntities.push_back(entities_vector[i]);
}
}

/**
Expand Down Expand Up @@ -234,28 +241,33 @@ class ModelPartUtils
// Number of nodes per entity
const std::size_t number_of_nodes_per_entity = rPrototypeEntity.GetGeometry().size();

// Define a TLS struct to store the entity nodes
struct TLS {
TLS (const std::size_t NumberEntities) : entity_nodes(NumberEntities) {}
typename TEntity::NodesArrayType entity_nodes;
};

// From connectivities generate entities
const auto entities_vector = IndexPartition<IndexType>(number_of_entities).for_each<AccumReduction<typename TEntity::Pointer>>([&](const IndexType i) {
typename TEntity::NodesArrayType temp_entity_nodes;
temp_entity_nodes.reserve(number_of_nodes_per_entity);
for(std::size_t j = 0 ; j < number_of_nodes_per_entity; ++j){
const std::size_t node_id = rEntitiesConnectivities[i][j];
const auto entities_vector = IndexPartition<IndexType>(number_of_entities).for_each<AccumReduction<typename TEntity::Pointer>>(TLS(number_of_nodes_per_entity), [&](const IndexType i, TLS& rTLS) {
const auto& r_nodes_ids = rEntitiesConnectivities[i];
for(std::size_t j = 0; j < number_of_nodes_per_entity; ++j) {
const std::size_t node_id = r_nodes_ids[j];
auto it_node = rThisNodes.find(node_id);
KRATOS_ERROR_IF(it_node == rThisNodes.end()) << "Node with Id " << node_id << " does not exist in the nodes array." << std::endl;
temp_entity_nodes.push_back(*(it_node.base()));
rTLS.entity_nodes(j) = *(it_node.base());
}

// Properties iterator
auto it_properties = rThisProperties.find(rPropertiesIds[i]);
KRATOS_ERROR_IF(it_properties == rThisProperties.end()) << "Properties with Id " << rPropertiesIds[i] << " does not exist in the properties array." << std::endl;
Properties::Pointer p_properties = *(it_properties.base());

// Add the entity to the list
return rPrototypeEntity.Create(rEntitiesIds[i], temp_entity_nodes, p_properties);
return rPrototypeEntity.Create(rEntitiesIds[i], rTLS.entity_nodes, p_properties);
});

// Add the entities to the list
rThisEntities.insert(entities_vector.begin(), entities_vector.end());
for (std::size_t i = 0; i < number_of_entities; ++i) {
rThisEntities.push_back(entities_vector[i]);
}
}

/**
Expand Down
Loading