Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
amdis
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
iwr
amdis
Commits
d5274317
Commit
d5274317
authored
Nov 06, 2014
by
Siqi Ling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small change
parent
831ce194
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
AMDiS/CMakeLists.txt
AMDiS/CMakeLists.txt
+5
-0
AMDiS/src/est/ResidualEstimator.cc
AMDiS/src/est/ResidualEstimator.cc
+7
-0
No files found.
AMDiS/CMakeLists.txt
View file @
d5274317
...
...
@@ -684,6 +684,11 @@ INSTALL(FILES ${HEADERS}
DESTINATION include/amdis/solver
)
list
(
APPEND deb_add_dirs
"include/amdis/solver"
)
FILE
(
GLOB HEADERS
"
${
SOURCE_DIR
}
/solver/details/*.h"
)
INSTALL
(
FILES
${
HEADERS
}
DESTINATION include/amdis/solver/details
)
list
(
APPEND deb_add_dirs
"include/amdis/solver/details"
)
FILE
(
GLOB HEADERS
"
${
SOURCE_DIR
}
/solver/itl/*.hpp"
)
INSTALL
(
FILES
${
HEADERS
}
DESTINATION include/amdis/solver/itl
)
...
...
AMDiS/src/est/ResidualEstimator.cc
View file @
d5274317
...
...
@@ -30,6 +30,7 @@
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
#include <mpi.h>
#include "parallel/MeshDistributor.h"
#include "parallel/ParallelDebug.h"
#endif
using
namespace
std
;
...
...
@@ -184,6 +185,11 @@ namespace AMDiS {
Parallel
::
InteriorBoundary
&
intBoundary
=
Parallel
::
MeshDistributor
::
globalMeshDistributor
->
getIntBoundary
(
0
);
#if (DEBUG != 0)
// Make sure interior boundary is correct
Parallel
::
ParallelDebug
::
testInteriorBoundary
(
*
(
Parallel
::
MeshDistributor
::
globalMeshDistributor
));
#endif
ElInfo
*
elInfo
=
mesh
->
createNewElInfo
();
elInfo
->
setFillFlag
(
Mesh
::
FILL_COORDS
);
...
...
@@ -268,6 +274,7 @@ namespace AMDiS {
if
(
subBound
.
size
()
==
0
)
continue
;
// Highly possible mesh is not correct, for example: hanging node
TEST_EXIT_DBG
(
subBound
.
size
()
==
stdMpiDet
.
getRecvData
(
it
->
first
).
size
())
(
"Should not happen: %d %d from rank %d
\n
"
,
subBound
.
size
(),
stdMpiDet
.
getRecvData
(
it
->
first
).
size
(),
it
->
first
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment