Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gyacomo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Antoine Cyril David Hoffmann
Gyacomo
Commits
03491df7
Commit
03491df7
authored
2 years ago
by
Antoine Cyril David Hoffmann
Browse files
Options
Downloads
Patches
Plain Diff
Fixed time profiler that was not initialized properly anymore
parent
2669aba7
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/basic_mod.F90
+4
-3
4 additions, 3 deletions
src/basic_mod.F90
src/control.F90
+2
-1
2 additions, 1 deletion
src/control.F90
src/ghosts_mod.F90
+1
-0
1 addition, 0 deletions
src/ghosts_mod.F90
with
7 additions
and
4 deletions
src/basic_mod.F90
+
4
−
3
View file @
03491df7
...
...
@@ -86,9 +86,10 @@ CONTAINS
READ
(
lu_in
,
basic
)
!Init cumulative timers
tc_rhs
=
0.
;
tc_adv_field
=
0.
;
tc_poisson
=
0.
tc_Sapj
=
0.
;
tc_diag
=
0.
;
tc_checkfield
=
0.
tc_rhs
=
0.
;
tc_adv_field
=
0.
;
tc_poisson
=
0.
tc_Sapj
=
0.
;
tc_diag
=
0.
;
tc_checkfield
=
0.
tc_ghost
=
0.
;
tc_coll
=
0.
;
tc_process
=
0.
tc_clos
=
0.
;
tc_step
=
0.
;
END
SUBROUTINE
basic_data
...
...
This diff is collapsed.
Click to expand it.
src/control.F90
+
2
−
1
View file @
03491df7
...
...
@@ -66,7 +66,8 @@ SUBROUTINE control
CALL
diagnose
(
step
)
CALL
cpu_time
(
t1_step
);
tc_step
=
tc_step
+
(
t1_step
-
t0_step
)
CALL
cpu_time
(
t1_step
);
tc_step
=
tc_step
+
(
t1_step
-
t0_step
)
END
DO
...
...
This diff is collapsed.
Click to expand it.
src/ghosts_mod.F90
+
1
−
0
View file @
03491df7
...
...
@@ -27,6 +27,7 @@ SUBROUTINE update_ghosts_moments
CALL
update_ghosts_z_i
ENDIF
CALL
cpu_time
(
t1_ghost
)
tc_ghost
=
tc_ghost
+
(
t1_ghost
-
t0_ghost
)
END
SUBROUTINE
update_ghosts_moments
...
...
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