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
292d2741
You need to sign in or sign up before continuing.
Commit
292d2741
authored
11 months ago
by
Kyle Klenk
Browse files
Options
Downloads
Patches
Plain Diff
Passed the laugh tests with summa v3
parent
be4454b0
No related branches found
No related tags found
1 merge request
!9
Integrating Restart and V4 changes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
build/source/file_access_actor/file_access_actor.cpp
+1
-2
1 addition, 2 deletions
build/source/file_access_actor/file_access_actor.cpp
build/source/file_access_actor/summa_init_struc.f90
+1
-0
1 addition, 0 deletions
build/source/file_access_actor/summa_init_struc.f90
with
2 additions
and
2 deletions
build/source/file_access_actor/file_access_actor.cpp
+
1
−
2
View file @
292d2741
...
...
@@ -37,11 +37,10 @@ behavior file_access_actor(stateful_actor<file_access_state>* self,
aout
(
self
)
<<
"File Access Actor: Intializing
\n
"
;
auto
&
fa_settings
=
self
->
state
.
file_access_actor_settings
;
int
num_hru
=
self
->
state
.
num_gru
;
int
err
=
0
;
self
->
state
.
summa_init_struc
=
std
::
make_unique
<
SummaInitStruc
>
();
err
=
self
->
state
.
summa_init_struc
->
allocate
(
self
->
state
.
num_gru
);
int
err
=
self
->
state
.
summa_init_struc
->
allocate
(
self
->
state
.
num_gru
);
if
(
err
!=
0
)
aout
(
self
)
<<
"ERROR: SummaInitStruc allocation failed
\n
"
;
err
=
self
->
state
.
summa_init_struc
->
summa_paramSetup
();
if
(
err
!=
0
)
aout
(
self
)
<<
"ERROR: SummaInitStruc paramSetup failed
\n
"
;
...
...
This diff is collapsed.
Click to expand it.
build/source/file_access_actor/summa_init_struc.f90
+
1
−
0
View file @
292d2741
...
...
@@ -191,4 +191,5 @@ subroutine deallocate_init_struc() bind(C, name="deallocate_init_struc")
implicit
none
deallocate
(
init_struc
)
end
subroutine
deallocate_init_struc
end
module
summa_init_struc
\ 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