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
iwr
amdis
Commits
4d6c7303
Commit
4d6c7303
authored
Mar 23, 2010
by
Thomas Witkowski
Browse files
New script to make some statistics from AMDiS output.
parent
5a469373
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/other/scripts/create_statistics
0 → 100755
View file @
4d6c7303
#!/bin/bash
grep
"for vecphase->space->feSpace"
${
1
}
&> tmp_dof
awk
'BEGIN {A = 0} {if (A == 0) { print $1; A = 1;} else A = 0}'
tmp_dof &> tmp_dof0
awk
'BEGIN {A = 1} {if (A == 0) { print $1; A = 1;} else A = 0}'
tmp_dof &> tmp_dof1
grep
"timestep = "
${
1
}
|
awk
'{sub(/,/, "", $3); print $3}'
&> tmp_time
grep
"buildAfterCoarsen needed"
${
1
}
|
awk
'{print $3}'
&> tmp_asm_time
grep
"solution of discrete system needed"
${
1
}
|
awk
'{print $6}'
&> tmp_sol_time
grep
"estimation of the error needed"
${
1
}
|
awk
'BEGIN {A = 0} {if (A == 0) A = 1; else print $6}'
&> tmp_est_time
printf
"# time dofs in fe0 dofs in fe1 time asm time sol time est
\n
"
paste
tmp_time tmp_dof0 tmp_dof1 tmp_asm_time tmp_sol_time tmp_est_time
rm
-f
tmp_time tmp_dof0 tmp_dof1 tmp_asm_time tmp_sol_time tmp_est_time
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