Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Nektar
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
87
Issues
87
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
44
Merge Requests
44
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nektar
Nektar
Commits
1496fb67
Commit
1496fb67
authored
May 27, 2016
by
Chris Cantwell
Committed by
Douglas Serson
Jun 02, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated CHANGELOG. Add code comments, tidy code.
(cherry picked from commit
f3f69939
) Conflicts: CHANGELOG.md
parent
c970cb5b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
CHANGELOG.md
CHANGELOG.md
+2
-0
library/LibUtilities/BasicUtils/ErrorUtil.hpp
library/LibUtilities/BasicUtils/ErrorUtil.hpp
+9
-9
No files found.
CHANGELOG.md
View file @
1496fb67
...
...
@@ -13,6 +13,8 @@ v4.3.2
-
Fix minor performance issue with time integration schemes (!632)
-
Fix FilterCheckpoint filter to be consistent with
`IO_CheckSteps`
(!633)
-
Fix
`IO_CheckSteps`
to avoid missing first checkpoint (!639)
-
Fix bug in iterative solver where only root process would ASSERT when
exceeding the maximum number of iterations (!636)
**FieldConvert**
:
-
Fix appearence of duplicate messages when running in parallel (!626)
...
...
library/LibUtilities/BasicUtils/ErrorUtil.hpp
View file @
1496fb67
...
...
@@ -77,7 +77,6 @@ namespace ErrorUtil
inline
static
void
Error
(
ErrType
type
,
const
char
*
routine
,
int
lineNumber
,
const
char
*
msg
,
unsigned
int
level
)
{
int
rank
=
0
;
// The user of outStream is primarily for the unit tests.
// The unit tests often generate errors on purpose to make sure
// invalid usage is flagged appropriately. Printing the error
...
...
@@ -91,6 +90,9 @@ namespace ErrorUtil
#endif
msg
;
// Default rank is zero. If MPI used and initialised, populate with
// the correct rank. Messages are only printed on rank zero.
int
rank
=
0
;
#if defined(NEKTAR_USE_MPI)
int
flag
;
MPI_Initialized
(
&
flag
);
...
...
@@ -99,7 +101,7 @@ namespace ErrorUtil
MPI_Comm_rank
(
MPI_COMM_WORLD
,
&
rank
);
}
#endif
std
::
string
btMessage
(
""
);
#if defined(NEKTAR_FULLDEBUG)
#ifndef _WIN32
...
...
@@ -118,12 +120,12 @@ namespace ErrorUtil
#endif
#endif
switch
(
type
)
switch
(
type
)
{
case
efatal
:
if
(
!
rank
)
if
(
!
rank
)
{
if
(
outStream
)
if
(
outStream
)
{
(
*
outStream
)
<<
btMessage
;
(
*
outStream
)
<<
"Fatal : "
<<
baseMsg
<<
std
::
endl
;
...
...
@@ -135,13 +137,12 @@ namespace ErrorUtil
<<
std
::
endl
;
}
}
throw
NekError
(
baseMsg
);
break
;
case
ewarning
:
if
(
!
rank
)
if
(
!
rank
)
{
if
(
outStream
)
if
(
outStream
)
{
(
*
outStream
)
<<
btMessage
;
(
*
outStream
)
<<
"Warning: "
<<
baseMsg
<<
std
::
endl
;
...
...
@@ -153,7 +154,6 @@ namespace ErrorUtil
}
}
break
;
default:
std
::
cerr
<<
"Unknown warning type: "
<<
baseMsg
<<
std
::
endl
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment