Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
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
Model registry
Operate
Environments
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
code
pugs
Commits
d37126d4
Commit
d37126d4
authored
8 months ago
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Fix a sequential only build warning and a too restrictive Assert
parent
6139a888
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/utils/Messenger.cpp
+1
-1
1 addition, 1 deletion
src/utils/Messenger.cpp
src/utils/ReproducibleSumUtils.hpp
+1
-1
1 addition, 1 deletion
src/utils/ReproducibleSumUtils.hpp
with
2 additions
and
2 deletions
src/utils/Messenger.cpp
+
1
−
1
View file @
d37126d4
...
...
@@ -28,7 +28,7 @@ Messenger::destroy()
}
}
Messenger
::
Messenger
([[
maybe_unused
]]
int
&
argc
,
[[
maybe_unused
]]
char
*
argv
[],
bool
parallel_output
)
Messenger
::
Messenger
([[
maybe_unused
]]
int
&
argc
,
[[
maybe_unused
]]
char
*
argv
[],
[[
maybe_unused
]]
bool
parallel_output
)
{
#ifdef PUGS_HAS_MPI
MPI_Init
(
&
argc
,
&
argv
);
...
...
This diff is collapsed.
Click to expand it.
src/utils/ReproducibleSumUtils.hpp
+
1
−
1
View file @
d37126d4
...
...
@@ -168,7 +168,7 @@ class ReproducibleScalarSum
PUGS_INLINE
static
void
_update
(
const
DataType
&
m
,
Bin
&
bin
)
noexcept
(
NO_ASSERT
)
{
Assert
(
m
>
0
);
Assert
(
m
>
=
0
);
using
namespace
reproducible_sum_utils
;
if
(
m
>=
std
::
pow
(
DataType
{
2
},
W
-
1.
)
*
ulp
(
bin
.
S
[
0
]))
{
...
...
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