Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openfpm_pdata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Sbalzarini Lab
Software
Parallel Computing
OpenFPM
openfpm_pdata
Commits
12dcd1d5
Commit
12dcd1d5
authored
8 years ago
by
Yaroslav
Browse files
Options
Downloads
Patches
Plain Diff
Fixing new Cell list in pdata
parent
b82fdf50
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Makefile.am
+0
-4
0 additions, 4 deletions
src/Makefile.am
src/Vector/vector_dist.hpp
+2
-2
2 additions, 2 deletions
src/Vector/vector_dist.hpp
with
2 additions
and
6 deletions
src/Makefile.am
+
0
−
4
View file @
12dcd1d5
...
...
@@ -2,11 +2,7 @@ LINKLIBS = $(OPENMP_LDFLAGS) $(LIBHILBERT_LIB) $(METIS_LIB) $(PTHREAD_LIBS) $(O
noinst_PROGRAMS
=
pdata
pdata_SOURCES
=
main.cpp Grid/grid_dist_id_unit_test.cpp lib/pdata.cpp test_multiple_o.cpp ../openfpm_devices/src/memory/HeapMemory.cpp ../openfpm_devices/src/memory/PtrMemory.cpp ../openfpm_vcluster/src/VCluster.cpp ../openfpm_devices/src/Memleak_check.cpp
<<<<<<<
HEAD
pdata_CXXFLAGS
=
-fext-numeric-literals
$(
LIBHILBERT_INCLUDE
)
$(
PETSC_INCLUDE
)
$(
HDF5_CPPFLAGS
)
$(
CUDA_CFLAGS
)
$(
INCLUDES_PATH
)
$(
PARMETIS_INCLUDE
)
$(
METIS_INCLUDE
)
$(
BOOST_CPPFLAGS
)
$(
H5PART_INCLUDE
)
-DPARALLEL_IO
-Wno-unused-local-typedefs
=======
pdata_CXXFLAGS
=
$(
OPENMP_CFLAGS
)
$(
AM_CXXFLAGS
)
$(
LIBHILBERT_INCLUDE
)
$(
PETSC_INCLUDE
)
$(
HDF5_CPPFLAGS
)
$(
CUDA_CFLAGS
)
$(
INCLUDES_PATH
)
$(
PARMETIS_INCLUDE
)
$(
METIS_INCLUDE
)
$(
BOOST_CPPFLAGS
)
$(
H5PART_INCLUDE
)
-DPARALLEL_IO
-Wno-unused-local-typedefs
>>>>>>>
5f826f6afc7c06f925476a464b820e7844678371
pdata_CFLAGS
=
$(
CUDA_CFLAGS
)
pdata_LDADD
=
$(
LINKLIBS
)
-lparmetis
-lmetis
nobase_include_HEADERS
=
Decomposition/CartDecomposition.hpp Decomposition/CartDecomposition_ext.hpp Decomposition/common.hpp Decomposition/Decomposition.hpp Decomposition/ie_ghost.hpp
\
...
...
This diff is collapsed.
Click to expand it.
src/Vector/vector_dist.hpp
+
2
−
2
View file @
12dcd1d5
...
...
@@ -356,7 +356,7 @@ public:
* \return the Cell list
*
*/
template
<
typename
CellL
=
CellList
<
dim
,
St
,
FAST
,
shift
<
dim
,
St
>
>
>
CellL
getCellListSym
(
St
r_cut
)
template
<
typename
CellL
=
CellList
<
dim
,
St
,
Mem_fast
<
dim
,
St
>
,
shift
<
dim
,
St
>
>
>
CellL
getCellListSym
(
St
r_cut
)
{
// Cell list
CellL
cell_list
;
...
...
@@ -434,7 +434,7 @@ public:
* \param cell_list Cell list to update
*
*/
template
<
typename
CellL
=
CellList
<
dim
,
St
,
FAST
,
shift
<
dim
,
St
>
>
>
void
updateCellListSym
(
CellL
&
cell_list
)
template
<
typename
CellL
=
CellList
<
dim
,
St
,
Mem_fast
<
dim
,
St
>
,
shift
<
dim
,
St
>
>
>
void
updateCellListSym
(
CellL
&
cell_list
)
{
populate_cell_list
(
v_pos
,
cell_list
,
g_m
,
CL_SYMMETRIC
);
...
...
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