Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_pdata
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openfpm
openfpm_pdata
Commits
877cc9bb
Commit
877cc9bb
authored
Dec 20, 2018
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Latest modules
parent
6f3e5ffd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
build.sh
build.sh
+0
-1
openfpm_vcluster
openfpm_vcluster
+1
-1
src/Decomposition/Distribution/ParMetisDistribution.hpp
src/Decomposition/Distribution/ParMetisDistribution.hpp
+2
-1
src/Decomposition/Distribution/parmetis_util.hpp
src/Decomposition/Distribution/parmetis_util.hpp
+1
-1
src/Grid/tests/grid_dist_id_unit_test.cpp
src/Grid/tests/grid_dist_id_unit_test.cpp
+1
-1
No files found.
build.sh
View file @
877cc9bb
...
...
@@ -21,7 +21,6 @@ echo "Branch name: $branch"
if
[
x
"
$hostname
"
==
x
"cifarm-centos-node.mpi-cbg.de"
]
;
then
rm
-rf
$HOME
/openfpm_dependencies/openfpm_pdata/
$branch
/
./install_MPI_mpich.sh
$HOME
/openfpm_dependencies/openfpm_pdata/
$branch
/ 4
echo
4
>
$HOME
/openfpm_dependencies/openfpm_pdata/
$branch
/MPI/version
fi
...
...
openfpm_vcluster
@
ae607867
Subproject commit
9dac61b34ebb695ae44228c437966edde8c9a32b
Subproject commit
ae6078670d0fc0c5b094efd633356334a7794d63
src/Decomposition/Distribution/ParMetisDistribution.hpp
View file @
877cc9bb
...
...
@@ -242,7 +242,8 @@ class ParMetisDistribution
//! Prepare vector of arrays to contain all partitions
partitions
.
get
(
p_id
).
resize
(
nl_vertex
);
std
::
copy
(
partition
,
partition
+
nl_vertex
,
&
partitions
.
get
(
p_id
).
get
(
0
));
if
(
nl_vertex
!=
0
)
{
std
::
copy
(
partition
,
partition
+
nl_vertex
,
&
partitions
.
get
(
p_id
).
get
(
0
));}
// Reset data structure to keep trace of new vertices distribution in processors (needed to update main graph)
for
(
size_t
i
=
0
;
i
<
Np
;
++
i
)
...
...
src/Decomposition/Distribution/parmetis_util.hpp
View file @
877cc9bb
...
...
@@ -328,7 +328,7 @@ public:
}
if
(
is_openfpm_init
()
==
true
)
MPI_Comm_free
(
&
comm
);
{
MPI_Comm_free
(
&
comm
);}
}
/*! \brief Set the Sub-graph
...
...
src/Grid/tests/grid_dist_id_unit_test.cpp
View file @
877cc9bb
...
...
@@ -1212,7 +1212,7 @@ void Test3D_periodic(const Box<3,float> & domain, long int k)
// 3D test
for
(
;
k
>=
2
;
k
-=
(
k
>
2
*
big_step
)
?
big_step
:
small_step
)
{
BOOST_TEST_CHECKPOINT
(
"Testing grid periodick<="
<<
k
);
BOOST_TEST_CHECKPOINT
(
"Testing grid periodic
k<="
<<
k
);
// grid size
size_t
sz
[
3
];
...
...
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