Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Nektar
Nektar
Commits
f84136ed
Commit
f84136ed
authored
Apr 04, 2013
by
Chris Cantwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/Mixed3DBC_IncNS' of localhost:nektar
parents
35ce6505
de97a84c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
0 deletions
+18
-0
library/MultiRegions/AssemblyMap/AssemblyMapCG2D.cpp
library/MultiRegions/AssemblyMap/AssemblyMapCG2D.cpp
+6
-0
library/MultiRegions/AssemblyMap/AssemblyMapCG3D.cpp
library/MultiRegions/AssemblyMap/AssemblyMapCG3D.cpp
+6
-0
library/MultiRegions/AssemblyMap/AssemblyMapDG.cpp
library/MultiRegions/AssemblyMap/AssemblyMapDG.cpp
+6
-0
No files found.
library/MultiRegions/AssemblyMap/AssemblyMapCG2D.cpp
View file @
f84136ed
...
...
@@ -502,6 +502,12 @@ namespace Nektar
m_hash
=
boost
::
hash_range
(
m_localToGlobalMap
.
begin
(),
m_localToGlobalMap
.
end
());
// Add up hash values if parallel
int
hash
=
m_hash
;
m_comm
->
AllReduce
(
hash
,
LibUtilities
::
ReduceSum
);
m_hash
=
hash
;
}
/**
...
...
library/MultiRegions/AssemblyMap/AssemblyMapCG3D.cpp
View file @
f84136ed
...
...
@@ -1461,6 +1461,12 @@ namespace Nektar
m_hash
=
boost
::
hash_range
(
m_localToGlobalMap
.
begin
(),
m_localToGlobalMap
.
end
());
// Add up hash values if parallel
int
hash
=
m_hash
;
m_comm
->
AllReduce
(
hash
,
LibUtilities
::
ReduceSum
);
m_hash
=
hash
;
}
}
// namespace
}
// namespace
library/MultiRegions/AssemblyMap/AssemblyMapDG.cpp
View file @
f84136ed
...
...
@@ -171,6 +171,12 @@ namespace Nektar
m_hash
=
boost
::
hash_range
(
m_localToGlobalBndMap
.
begin
(),
m_localToGlobalBndMap
.
end
());
// Add up hash values if parallel
int
hash
=
m_hash
;
m_comm
->
AllReduce
(
hash
,
LibUtilities
::
ReduceSum
);
m_hash
=
hash
;
}
...
...
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