Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Summa Actors
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Numerical_Simulations_Lab
Actors
Summa Actors
Commits
3b8418c8
Commit
3b8418c8
authored
1 year ago
by
KyleKlenk
Browse files
Options
Downloads
Patches
Plain Diff
Add printing of rel_tol and abs_tol to file.
parent
f48279ea
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!5
add in compiler def ACTORS_ACTIVE to turn on some stuff so can move...
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/source/actors/global/settings_functions.cpp
+17
-19
17 additions, 19 deletions
build/source/actors/global/settings_functions.cpp
with
17 additions
and
19 deletions
build/source/actors/global/settings_functions.cpp
+
17
−
19
View file @
3b8418c8
...
...
@@ -131,27 +131,25 @@ void check_settings_from_json(Distributed_Settings &distributed_settings,
Summa_Actor_Settings
&
summa_actor_settings
,
File_Access_Actor_Settings
&
file_access_actor_settings
,
Job_Actor_Settings
&
job_actor_settings
,
HRU_Actor_Settings
&
hru_actor_settings
)
{
std
::
cout
<<
"************ DISTRIBUTED_SETTINGS ************
\n
"
;
std
::
cout
<<
distributed_settings
.
distributed_mode
<<
"
\n
"
;
std
::
cout
<<
"************ DISTRIBUTED_SETTINGS ************
\n
"
<<
distributed_settings
.
distributed_mode
<<
"
\n
"
;
for
(
auto
&
host
:
distributed_settings
.
servers_list
)
{
std
::
cout
<<
host
<<
"
\n
"
;
}
std
::
cout
<<
distributed_settings
.
port
<<
"
\n
"
;
std
::
cout
<<
distributed_settings
.
total_hru_count
<<
"
\n
"
;
std
::
cout
<<
distributed_settings
.
num_hru_per_batch
<<
"
\n
"
;
std
::
cout
<<
"************ SUMMA_ACTOR_SETTINGS ************
\n
"
;
std
::
cout
<<
summa_actor_settings
.
max_gru_per_job
<<
"
\n\n\n
"
;
std
::
cout
<<
"************ FILE_ACCESS_ACTOR_SETTINGS ************
\n
"
;
std
::
cout
<<
file_access_actor_settings
.
num_partitions_in_output_buffer
<<
"
\n
"
;
std
::
cout
<<
file_access_actor_settings
.
num_timesteps_in_output_buffer
<<
"
\n\n\n
"
;
std
::
cout
<<
"************ JOB_ACTOR_SETTINGS ************
\n
"
;
std
::
cout
<<
job_actor_settings
.
file_manager_path
<<
"
\n
"
;
std
::
cout
<<
"************ HRU_ACTOR_SETTINGS ************
\n
"
;
std
::
cout
<<
hru_actor_settings
.
print_output
<<
"
\n
"
;
std
::
cout
<<
hru_actor_settings
.
output_frequency
<<
"
\n\n\n
"
;
std
::
cout
<<
distributed_settings
.
port
<<
"
\n
"
<<
distributed_settings
.
total_hru_count
<<
"
\n
"
<<
distributed_settings
.
num_hru_per_batch
<<
"
\n
"
<<
"************ SUMMA_ACTOR_SETTINGS ************
\n
"
<<
summa_actor_settings
.
max_gru_per_job
<<
"
\n\n\n
"
<<
"************ FILE_ACCESS_ACTOR_SETTINGS ************
\n
"
<<
file_access_actor_settings
.
num_partitions_in_output_buffer
<<
"
\n
"
<<
file_access_actor_settings
.
num_timesteps_in_output_buffer
<<
"
\n\n\n
"
<<
"************ JOB_ACTOR_SETTINGS ************
\n
"
<<
job_actor_settings
.
file_manager_path
<<
"
\n
"
<<
"************ HRU_ACTOR_SETTINGS ************
\n
"
<<
hru_actor_settings
.
print_output
<<
"
\n
"
<<
hru_actor_settings
.
output_frequency
<<
"
\n
"
<<
"rel_tol: "
<<
hru_actor_settings
.
rel_tol
<<
"
\n
"
<<
"abs_tol: "
<<
hru_actor_settings
.
abs_tol
<<
"
\n\n\n
"
;
}
\ No newline at end of file
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