Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_vcluster
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_vcluster
Commits
d7052aaf
Commit
d7052aaf
authored
Dec 12, 2016
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing maning for OSX
parent
7545a755
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
run.sh
run.sh
+7
-7
src/Makefile.am
src/Makefile.am
+5
-5
No files found.
run.sh
View file @
d7052aaf
...
...
@@ -13,7 +13,7 @@ if [ "$2" == "wetcluster" ]; then
export
MODULEPATH
=
"/sw/apps/modules/modulefiles:
$MODULEPATH
"
## Run on the cluster
bsub
-o
output_run2.%J
-K
-n
2
-R
"span[hosts=1]"
"module load openmpi/1.8.1 ; module load gcc/4.9.2; mpirun -np
$3
./src/vcluster"
bsub
-o
output_run2.%J
-K
-n
2
-R
"span[hosts=1]"
"module load openmpi/1.8.1 ; module load gcc/4.9.2; mpirun -np
$3
./src/vcluster
_test
"
if
[
$?
-ne
0
]
;
then
exit
1
;
fi
elif
[
"
$2
"
==
"taurus"
]
;
then
...
...
@@ -27,19 +27,19 @@ elif [ "$2" == "taurus" ]; then
### to exclude --exclude=taurusi[6300-6400],taurusi[5400-5500]
salloc
--nodes
=
1
--ntasks-per-node
=
$3
--time
=
00:05:00
--mem-per-cpu
=
1800
--partition
=
haswell bash
-c
"ulimit -s unlimited && mpirun -np
$3
src/vcluster --report_level=no"
salloc
--nodes
=
1
--ntasks-per-node
=
$3
--time
=
00:05:00
--mem-per-cpu
=
1800
--partition
=
haswell bash
-c
"ulimit -s unlimited && mpirun -np
$3
src/vcluster
_test
--report_level=no"
if
[
$?
-ne
0
]
;
then
exit
1
;
fi
sleep
5
# salloc --nodes=2 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 48 src/vcluster --report_level=no"
# salloc --nodes=2 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 48 src/vcluster
_test
--report_level=no"
# if [ $? -ne 0 ]; then exit 1 ; fi
# sleep 5
# salloc --nodes=4 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 96 src/vcluster --report_level=no"
# salloc --nodes=4 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 96 src/vcluster
_test
--report_level=no"
# if [ $? -ne 0 ]; then exit 1 ; fi
# sleep 5
# salloc --nodes=8 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 192 src/vcluster --report_level=no"
# salloc --nodes=8 --ntasks-per-node=24 --time=00:05:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 192 src/vcluster
_test
--report_level=no"
# if [ $? -ne 0 ]; then exit 1 ; fi
# sleep 5
# salloc --nodes=10 --ntasks-per-node=24 --time=00:5:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 240 src/vcluster --report_level=no"
# salloc --nodes=10 --ntasks-per-node=24 --time=00:5:00 --mem-per-cpu=1800 --partition=haswell bash -c "ulimit -s unlimited && mpirun -np 240 src/vcluster
_test
--report_level=no"
# if [ $? -ne 0 ]; then exit 1 ; fi
else
...
...
@@ -47,7 +47,7 @@ else
source
$HOME
/.bashrc
echo
"
$PATH
"
mpirun
-np
$3
./src/vcluster
mpirun
-np
$3
./src/vcluster
_test
if
[
$?
-ne
0
]
;
then
exit
1
;
fi
fi
...
...
src/Makefile.am
View file @
d7052aaf
LINKLIBS
=
$(DEFAULT_LIB)
$(PTHREAD_LIBS)
$(OPT_LIBS)
$(HDF5_LDFLAGS)
$(HDF5_LIBS)
$(BOOST_LDFLAGS)
noinst_PROGRAMS
=
vcluster
vcluster_SOURCES
=
main.cpp VCluster/VCluster.cpp ../../openfpm_devices/src/memory/HeapMemory.cpp ../../openfpm_devices/src/memory/PtrMemory.cpp
vcluster_CXXFLAGS
=
$(AM_CXXFLAGS)
$(INCLUDES_PATH)
$(BOOST_CPPFLAGS)
vcluster_CFLAGS
=
$(CUDA_CFLAGS)
vcluster_LDADD
=
$(LINKLIBS)
noinst_PROGRAMS
=
vcluster
_test
vcluster_
test_
SOURCES
=
main.cpp VCluster/VCluster.cpp ../../openfpm_devices/src/memory/HeapMemory.cpp ../../openfpm_devices/src/memory/PtrMemory.cpp
vcluster_
test_
CXXFLAGS
=
$(AM_CXXFLAGS)
$(INCLUDES_PATH)
$(BOOST_CPPFLAGS)
vcluster_
test_
CFLAGS
=
$(CUDA_CFLAGS)
vcluster_
test_
LDADD
=
$(LINKLIBS)
lib_LIBRARIES
=
libvcluster.a
libvcluster_a_SOURCES
=
VCluster/VCluster.cpp
...
...
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