Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_pdata
Commits
58aec589
Commit
58aec589
authored
Jun 08, 2017
by
incardon
Browse files
Fixing VIC
parent
f54c73b9
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
58aec589
...
...
@@ -20,7 +20,8 @@ All notable changes to this project will be documented in this file.
-
In case of miss compilation ignore system wide installation
-
Bug in VTK writer binary in case of vectors
-
Bug in VTK writer binary: long int are not supported removing output
-
Bug in the constructor with stencil bigger than one
-
Bug in FDScheme in the constructor with stencil bigger than one
-
Bug Fixed Memory leak in petsc solver
### Changed
-
CellList types has changed
...
...
example/Numerics/Vortex_in_cell/Makefile
0 → 100644
View file @
58aec589
include
../../../example.mk
CC
=
mpic++
LDIR
=
OBJ_VIC
=
main_vic.o
OBJ_VIC_PETSC
=
main_vic_petsc.o
%.o
:
%.cpp
$(CC)
-O3
-g
-c
--std
=
c++11
-o
$@
$<
$(INCLUDE_PATH)
all
:
vic vic_petsc
vic
:
$(OBJ_VIC)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
vic_petsc
:
$(OBJ_VIC_PETSC)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
all
mpirun
-np
3 ./vic
&&
mpirun
-np
3 ./vic
.PHONY
:
clean all
clean
:
rm
-f
*
.o
*
~ core vic
example/Numerics/Vortex_in_cell/main_vic.cpp
0 → 100644
View file @
58aec589
This diff is collapsed.
Click to expand it.
example/Numerics/Vortex_in_cell/main_vic_petsc.cpp
0 → 100644
View file @
58aec589
This diff is collapsed.
Click to expand it.
example/Numerics/Vortex_in_cell/main_vic_petsc2.cpp
0 → 100644
View file @
58aec589
This diff is collapsed.
Click to expand it.
example/Numerics/Vortex_in_cell/main_vic_petsc3.cpp
0 → 100644
View file @
58aec589
This diff is collapsed.
Click to expand it.
openfpm_data
@
dfaf8538
Subproject commit
2c31320305af04b0621d2a10818354d064ec1bbf
Subproject commit
dfaf8538f94caf51229ec40bc51af23ad8bea934
openfpm_io
@
2b3e991f
Subproject commit
9b0500dd1347d9f3d2898f2a9206220eea7907d5
Subproject commit
2b3e991f1d5960f5e3077ab4b7ed54b8de46f246
src/Decomposition/Distribution/DistParMetisDistribution.hpp
View file @
58aec589
...
...
@@ -351,7 +351,7 @@ public:
return
*
this
;
}
const
DistParMetisDistribution
<
dim
,
T
>
&
operator
=
(
const
DistParMetisDistribution
<
dim
,
T
>
&&
dist
)
const
DistParMetisDistribution
<
dim
,
T
>
&
operator
=
(
DistParMetisDistribution
<
dim
,
T
>
&&
dist
)
{
v_cl
=
dist
.
v_cl
;
gr
=
dist
.
gr
;
...
...
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