Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
dune-xt
Commits
4d295ef2
Commit
4d295ef2
authored
15 years ago
by
René Fritze
Browse files
Options
Downloads
Patches
Plain Diff
fix eoc calc
parent
80cd52cc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
stuff/misc.hh
+5
-5
5 additions, 5 deletions
stuff/misc.hh
stuff/profiler.hh
+6
-0
6 additions, 0 deletions
stuff/profiler.hh
with
11 additions
and
5 deletions
stuff/misc.hh
+
5
−
5
View file @
4d295ef2
...
...
@@ -106,11 +106,11 @@ public:
}
void
putErrorCol
(
std
::
ofstream
&
outputFile_
,
const
double
prevError_
,
const
double
error_
,
const
double
prevh_
,
const
bool
initial
)
const
bool
/*
initial
*/
)
{
current_h_
=
info_
.
grid_width
;
double
factor
=
prevh_
/
current_
h_
;
double
eoc
=
std
::
log
(
prevE
rror_
/
e
rror_
)
/
log
(
factor
);
double
factor
=
current_h_
/
prev
h_
;
double
eoc
=
std
::
log
(
e
rror_
/
prevE
rror_
)
/
std
::
log
(
factor
);
outputFile_
<<
" & "
<<
error_
<<
" & "
<<
eoc
;
}
...
...
@@ -142,8 +142,8 @@ public:
void
putStaticCols
(
std
::
ofstream
&
outputFile_
)
{
outputFile_
<<
std
::
setw
(
4
)
<<
info_
.
grid_width
<<
" & "
<<
info_
.
codim0
<<
" & "
<<
info_
.
c11
<<
" & "
<<
info_
.
d11
<<
" & "
<<
info_
.
c12
<<
" & "
<<
info_
.
d12
;
outputFile_
<<
std
::
setw
(
4
)
<<
info_
.
grid_width
<<
" & "
<<
info_
.
codim0
<<
" & "
<<
info_
.
run_time
<<
" & "
<<
info_
.
c11
<<
" & "
<<
info_
.
d11
<<
" & "
<<
info_
.
c12
<<
" & "
<<
info_
.
d12
;
}
void
endTable
(
std
::
ofstream
&
outputFile_
)
...
...
This diff is collapsed.
Click to expand it.
stuff/profiler.hh
+
6
−
0
View file @
4d295ef2
...
...
@@ -56,6 +56,12 @@ public:
(
m_timings
[
m_cur_run_num
])[
section_name
].
end
=
clock
();
}
inline
long
GetTiming
(
const
std
::
string
section_name
)
{
clock_t
diff
=
(
m_timings
[
m_cur_run_num
])[
section_name
].
end
-
(
m_timings
[
m_cur_run_num
])[
section_name
].
start
;
return
long
(
diff
/
double
(
CLOCKS_PER_SEC
));
}
/** output to currently pre-defined (csv) file
* \param comm used to gather and average the runtime data over all processes
* \tparam CollectiveCommunication should be Dune::CollectiveCommunication< MPI_Comm / double >
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment