-
Notifications
You must be signed in to change notification settings - Fork 41
Fix Fortran Wrapper Parameter Passing Bug in barrier and forget Functions #116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,9 +63,9 @@ | |
| //Include temporal samplers | ||
| #include "samplers/temporal/temporal_sampler_exact.h" | ||
| #include "samplers/temporal/temporal_sampler_gauss.h" | ||
| #include "samplers/temporal/temporal_sampler_gauss_adaptive.h" | ||
| #include "samplers/temporal/temporal_sampler_mean.h" | ||
| #include "samplers/temporal/temporal_sampler_sum.h" | ||
| #include "samplers/temporal/temporal_sampler_linear.h" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please keep this include. |
||
|
|
||
| //Include coupling algorithms | ||
| #include "samplers/algorithm/algo_fixed_relaxation.h" | ||
|
|
@@ -120,7 +120,6 @@ namespace mui { | |
| DECLARE_SAMPLER_0ARG(temporal_sampler_gauss,SUFFIX,config_##SUFFIX);\ | ||
| DECLARE_SAMPLER_0ARG(temporal_sampler_sum,SUFFIX,config_##SUFFIX);\ | ||
| DECLARE_SAMPLER_0ARG(temporal_sampler_mean,SUFFIX,config_##SUFFIX);\ | ||
| DECLARE_SAMPLER_0ARG(temporal_sampler_linear,SUFFIX,config_##SUFFIX);\ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please keep this declaration. |
||
| DECLARE_SAMPLER_0ARG(algo_fixed_relaxation,SUFFIX,config_##SUFFIX);\ | ||
| DECLARE_SAMPLER_0ARG(algo_aitken,SUFFIX,config_##SUFFIX);\ | ||
| namespace geometry {\ | ||
|
|
@@ -162,7 +161,6 @@ SPECIALIZE(3fx,float,int64_t,3); | |
| DECLARE_SAMPLER_0ARG(temporal_sampler_gauss,SUFFIX,CONFIG);\ | ||
| DECLARE_SAMPLER_0ARG(temporal_sampler_sum,SUFFIX,CONFIG);\ | ||
| DECLARE_SAMPLER_0ARG(temporal_sampler_mean,SUFFIX,CONFIG);\ | ||
| DECLARE_SAMPLER_0ARG(temporal_sampler_linear,SUFFIX,CONFIG);\ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please keep this declaration. |
||
| DECLARE_SAMPLER_0ARG(algo_fixed_relaxation,SUFFIX,CONFIG);\ | ||
| DECLARE_SAMPLER_0ARG(algo_aitken,SUFFIX,CONFIG);\ | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think
temporal_sampler_gauss_adaptiveis a part of the code base. Suggest removing this include