Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,6 @@ void AcousticFirstOrderWaveEquationSEM::precomputeSourceAndReceiverTerm( MeshLev
baseMesh.getNodeManager().elementList().toView().freeOnDevice();
baseMesh.getFaceManager().nodeList().toView().freeOnDevice();
baseMesh.getNodeManager().referencePosition().freeOnDevice();
m_sourceCoordinates.freeOnDevice();
m_receiverCoordinates.freeOnDevice();
facesToNodes.freeOnDevice();
nodesToElements.freeOnDevice();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,6 @@ void AcousticVTIWaveEquationSEM::precomputeSourceAndReceiverTerm( MeshLevel & ba
baseMesh.getNodeManager().elementList().toView().freeOnDevice();
baseMesh.getFaceManager().nodeList().toView().freeOnDevice();
baseMesh.getNodeManager().referencePosition().freeOnDevice();
m_sourceCoordinates.freeOnDevice();
m_receiverCoordinates.freeOnDevice();
facesToNodes.freeOnDevice();
nodesToElements.freeOnDevice();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,6 @@ void AcousticWaveEquationSEM::precomputeSourceAndReceiverTerm( MeshLevel & baseM
baseMesh.getNodeManager().elementList().toView().freeOnDevice();
baseMesh.getFaceManager().nodeList().toView().freeOnDevice();
baseMesh.getNodeManager().referencePosition().freeOnDevice();
m_sourceCoordinates.freeOnDevice();
m_receiverCoordinates.freeOnDevice();
facesToNodes.freeOnDevice();
nodesToElements.freeOnDevice();
}
Expand Down Expand Up @@ -1081,6 +1079,7 @@ void AcousticWaveEquationSEM::synchronizeUnknowns( real64 const & time_n,
acousticfields::AuxiliaryVar4PML::key() } );
}


CommunicationTools & syncFields = CommunicationTools::getInstance();
syncFields.synchronizeFields( fieldsToBeSync,
mesh,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,6 @@ void ElasticFirstOrderWaveEquationSEM::precomputeSourceAndReceiverTerm( MeshLeve
baseMesh.getNodeManager().elementList().toView().freeOnDevice();
baseMesh.getFaceManager().nodeList().toView().freeOnDevice();
baseMesh.getNodeManager().referencePosition().freeOnDevice();
m_sourceCoordinates.freeOnDevice();
m_receiverCoordinates.freeOnDevice();
facesToNodes.freeOnDevice();
nodesToElements.freeOnDevice();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,6 @@ void ElasticWaveEquationSEM::precomputeSourceAndReceiverTerm( MeshLevel & baseMe
baseMesh.getNodeManager().elementList().toView().freeOnDevice();
baseMesh.getFaceManager().nodeList().toView().freeOnDevice();
baseMesh.getNodeManager().referencePosition().freeOnDevice();
m_sourceCoordinates.freeOnDevice();
m_receiverCoordinates.freeOnDevice();
facesToNodes.freeOnDevice();
nodesToElements.freeOnDevice();
}
Expand Down