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
0
Issues
0
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
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argupta
openfpm_pdata
Commits
dc259ebf
Commit
dc259ebf
authored
Nov 01, 2016
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing examples
parent
d316ea67
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
example/Grid/0_simple/Makefile
example/Grid/0_simple/Makefile
+1
-1
example/Grid/1_stencil/Makefile
example/Grid/1_stencil/Makefile
+1
-1
example/Grid/2_solve_eq/Makefile
example/Grid/2_solve_eq/Makefile
+1
-1
example/Grid/3_gray_scott/Makefile
example/Grid/3_gray_scott/Makefile
+1
-1
example/Numerics/PSE/0_Derivative_approx_1D/Makefile
example/Numerics/PSE/0_Derivative_approx_1D/Makefile
+1
-1
example/Numerics/PSE/1_Diffusion_1D/Makefile
example/Numerics/PSE/1_Diffusion_1D/Makefile
+1
-1
example/Numerics/Stoke_flow/0_2D_incompressible/Makefile
example/Numerics/Stoke_flow/0_2D_incompressible/Makefile
+1
-1
example/Numerics/Stoke_flow/1_3D_incompressible/Makefile
example/Numerics/Stoke_flow/1_3D_incompressible/Makefile
+1
-1
example/Plot/0_simple_graph/Makefile
example/Plot/0_simple_graph/Makefile
+1
-1
example/VCluster/0_simple/Makefile
example/VCluster/0_simple/Makefile
+1
-1
example/Vector/0_simple/Makefile
example/Vector/0_simple/Makefile
+1
-1
example/Vector/1_celllist/Makefile
example/Vector/1_celllist/Makefile
+1
-1
example/Vector/1_ghost_get_put/Makefile
example/Vector/1_ghost_get_put/Makefile
+1
-1
example/Vector/2_expressions/Makefile
example/Vector/2_expressions/Makefile
+1
-1
example/Vector/3_molecular_dynamic/Makefile
example/Vector/3_molecular_dynamic/Makefile
+1
-1
example/Vector/4_complex_prop/Makefile
example/Vector/4_complex_prop/Makefile
+1
-1
example/Vector/4_multiphase_celllist_verlet/Makefile
example/Vector/4_multiphase_celllist_verlet/Makefile
+1
-1
example/Vector/4_reorder/Makefile
example/Vector/4_reorder/Makefile
+1
-1
example/Vector/5_molecular_dynamic_sym/Makefile
example/Vector/5_molecular_dynamic_sym/Makefile
+1
-1
example/Vector/6_complex_usage/Makefile
example/Vector/6_complex_usage/Makefile
+1
-1
No files found.
example/Grid/0_simple/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ grid: $(OBJ)
all
:
grid
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
2 ./grid
mpirun
-np
2 ./grid
.PHONY
:
clean all run
...
...
example/Grid/1_stencil/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ stencil: $(OBJ)
all
:
stencil
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./stencil
mpirun
-np
3 ./stencil
.PHONY
:
clean all run
...
...
example/Grid/2_solve_eq/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ periodic: $(OBJ)
all
:
periodic
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
4 ./periodic
mpirun
-np
4 ./periodic
.PHONY
:
clean all run
...
...
example/Grid/3_gray_scott/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ gray_scott: $(OBJ)
all
:
gray_scott
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
4 ./gray_scott
mpirun
-np
4 ./gray_scott
.PHONY
:
clean all run
...
...
example/Numerics/PSE/0_Derivative_approx_1D/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ pse_1d: $(OBJ)
all
:
pse_1d
run
:
all
source
$$
HOME/openfpm_vars
;
./pse_1d
./pse_1d
.PHONY
:
clean all run
...
...
example/Numerics/PSE/1_Diffusion_1D/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ diff_1d: $(OBJ)
all
:
diff_1d
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
4 ./diff_1d
mpirun
-np
4 ./diff_1d
.PHONY
:
clean all
...
...
example/Numerics/Stoke_flow/0_2D_incompressible/Makefile
View file @
dc259ebf
...
...
@@ -19,7 +19,7 @@ stokes_2d_petsc: $(OBJ_PETSC)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./stokes_2d_eigen
;
mpirun
-np
3 ./stokes_2d_petsc
mpirun
-np
3 ./stokes_2d_eigen
&&
mpirun
-np
3 ./stokes_2d_petsc
.PHONY
:
clean all
...
...
example/Numerics/Stoke_flow/1_3D_incompressible/Makefile
View file @
dc259ebf
...
...
@@ -19,7 +19,7 @@ stokes_3d_petsc: $(OBJ_PETSC)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./stokes_3d_eigen
;
mpirun
-np
3 ./stokes_3d_petsc
mpirun
-np
3 ./stokes_3d_eigen
&&
mpirun
-np
3 ./stokes_3d_petsc
.PHONY
:
clean all run
...
...
example/Plot/0_simple_graph/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ plot: $(OBJ)
all
:
plot
run
:
all
source
$$
HOME/openfpm_vars
;
./plot
./plot
.PHONY
:
clean all run
...
...
example/VCluster/0_simple/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ vcluster: $(OBJ)
all
:
vcluster
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./vcluster
mpirun
-np
3 ./vcluster
.PHONY
:
clean all run
...
...
example/Vector/0_simple/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ vect: $(OBJ)
all
:
vect
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
2 ./vect
mpirun
-np
2 ./vect
.PHONY
:
clean all run
...
...
example/Vector/1_celllist/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ cell: $(OBJ)
all
:
cell
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
2 ./cell
mpirun
-np
2 ./cell
.PHONY
:
clean all run
...
...
example/Vector/1_ghost_get_put/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ ghost: $(OBJ)
all
:
ghost
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
2 ./ghost
mpirun
-np
2 ./ghost
.PHONY
:
clean all run
...
...
example/Vector/2_expressions/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ expr: $(OBJ)
all
:
expr
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./expr
mpirun
-np
3 ./expr
.PHONY
:
clean all run
...
...
example/Vector/3_molecular_dynamic/Makefile
View file @
dc259ebf
...
...
@@ -23,7 +23,7 @@ md_dyn_vl: $(OBJ_VL)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./md_dyn
;
mpirun
-np
3 ./md_dyn_expr
;
mpirun
-np
3 ./md_dyn_vl
;
mpirun
-np
3 ./md_dyn
&&
mpirun
-np
3 ./md_dyn_expr
&&
mpirun
-np
3 ./md_dyn_vl
;
.PHONY
:
clean all run
...
...
example/Vector/4_complex_prop/Makefile
View file @
dc259ebf
...
...
@@ -19,7 +19,7 @@ vect_ser: $(OBJ_SER)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
all
source
$$
HOME/openfpm_vars
&&
mpirun
-np
2 ./vect_cp
&&
mpirun
-np
2 ./vect_ser
mpirun
-np
2 ./vect_cp
&&
mpirun
-np
2 ./vect_ser
.PHONY
:
clean all run
...
...
example/Vector/4_multiphase_celllist_verlet/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ multip: $(OBJ)
all
:
multip
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
2 ./multip
mpirun
-np
2 ./multip
.PHONY
:
clean all run
...
...
example/Vector/4_reorder/Makefile
View file @
dc259ebf
...
...
@@ -28,7 +28,7 @@ md_comp_ord_test: $(OBJ_CORD)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
all_test
source
$$
HOME/openfpm_vars
;
mpirun
-np
4 ./md_data_ord_test
;
mpirun
-np
4 ./md_comp_ord_test
mpirun
-np
4 ./md_data_ord_test
&&
mpirun
-np
4 ./md_comp_ord_test
.PHONY
:
clean all run all_test on_test
...
...
example/Vector/5_molecular_dynamic_sym/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ md_sym: $(OBJ_DORD)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
md_sym
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./md_sym
mpirun
-np
3 ./md_sym
.PHONY
:
clean all run
...
...
example/Vector/6_complex_usage/Makefile
View file @
dc259ebf
...
...
@@ -15,7 +15,7 @@ complex_use: $(OBJ_DORD)
$(CC)
-o
$@
$^
$(CFLAGS)
$(LIBS_PATH)
$(LIBS)
run
:
all
source
$$
HOME/openfpm_vars
;
mpirun
-np
3 ./complex_use
mpirun
-np
3 ./complex_use
.PHONY
:
clean all run all_test on_test
...
...
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