Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aland, Sebastian
amdis
Commits
842726b8
Commit
842726b8
authored
Nov 06, 2012
by
Thomas Witkowski
Browse files
Fixed for debugging compilation.
parent
00fc1298
Changes
3
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/AMDiS.cc
View file @
842726b8
...
...
@@ -96,7 +96,9 @@ namespace AMDiS {
Parameters
::
init
(
initFileName
);
}
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
Parameters
::
get
(
"parallel->log main rank"
,
Msg
::
outputMainRank
);
#endif
// reset parameters from command line
bool
ignoreCommandline
=
false
;
...
...
AMDiS/src/io/FileWriter.cc
View file @
842726b8
...
...
@@ -190,8 +190,14 @@ namespace AMDiS {
dofWriter
.
writeFile
(
fn
+
".dof"
,
solutionVecs
);
}
#if HAVE_PARALLEL_DOMAIN_AMDIS
if
(
writeArhFormat
)
ArhWriter
::
write
(
paraFilename
+
".arh"
,
feSpace
->
getMesh
(),
solutionVecs
);
#else
if
(
writeArhFormat
)
ArhWriter
::
write
(
filename
+
".arh"
,
feSpace
->
getMesh
(),
solutionVecs
);
#endif
#ifdef HAVE_PNG
if
(
writePngFormat
)
{
...
...
AMDiS/src/parallel/MeshDistributor.cc
View file @
842726b8
...
...
@@ -1595,9 +1595,9 @@ namespace AMDiS {
elObjDb
.
create
(
partitionMap
,
levelData
);
elObjDb
.
updateRankData
();
unsigned
long
memsize
=
elObjDb
.
calculateMemoryUsage
();
MSG
(
"Memory usage of element object database = %5.f KByte
\n
"
,
static_cast
<
double
>
(
memsize
/
1024.0
));
//
unsigned long memsize = elObjDb.calculateMemoryUsage();
//
MSG("Memory usage of element object database = %5.f KByte\n",
//
static_cast<double>(memsize / 1024.0));
intBoundary
.
create
(
levelData
,
0
,
elObjDb
);
ParallelDebug
::
printBoundaryInfo
(
intBoundary
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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