Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TAPIOCA
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Francois Tessier
TAPIOCA
Commits
984b2b17
Commit
984b2b17
authored
Aug 16, 2017
by
Francois Tessier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix for filename string copy
parent
31b984fa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
7 deletions
+14
-7
architectures/linux-sles_12-x86_64/tp_memory.hpp
architectures/linux-sles_12-x86_64/tp_memory.hpp
+1
-1
examples/HACC-IO/run_debug_xc40.sh
examples/HACC-IO/run_debug_xc40.sh
+11
-4
tapioca.cpp
tapioca.cpp
+2
-2
No files found.
architectures/linux-sles_12-x86_64/tp_memory.hpp
View file @
984b2b17
...
...
@@ -21,7 +21,7 @@ public:
this
->
masterRank_
=
masterRank
;
MPI_Comm_dup
(
comm
,
&
this
->
comm_
);
this
->
buffSize_
=
buffSize
;
str
cpy
(
this
->
fileName_
,
fileName
);
str
ncpy
(
this
->
fileName_
,
fileName
,
sizeof
(
fileName
)
);
MPI_Comm_rank
(
this
->
comm_
,
&
rank
);
...
...
examples/HACC-IO/run_debug_xc40.sh
View file @
984b2b17
...
...
@@ -7,13 +7,14 @@ TARGET="/lus/theta-fs0/projects/Performance/ftessier/HACC"
DDT
=
"/soft/debuggers/forge/bin/ddt --connect"
STRIPE_COUNT
=
2
STRIPE_SIZE
=
8388608
AGGR_MULT
=
1
cd
$HOME
/install/
$ARCHI
/bin/
export
TAPIOCA_DEVNULL
=
false
export
TAPIOCA_COMMSPLIT
=
true
export
TAPIOCA_STRATEGY
=
TOPOLOGY_AWARE
export
TAPIOCA_NBAGGR
=
1
export
TAPIOCA_NBAGGR
=
2
export
TAPIOCA_BUFFERSIZE
=
16777216
function
setLustreFS
()
...
...
@@ -35,13 +36,19 @@ function updateSettings()
SETTINGS
=
"
$SETTINGS
-e MPICH_RMA_OVER_DMAPP=1"
SETTINGS
=
"
$SETTINGS
-e MPICH_MPIIO_AGGREGATOR_PLACEMENT_DISPLAY=1"
SETTINGS
=
"
$SETTINGS
-e MPICH_MPIIO_HINTS=*:cray_cb_nodes_multiplier=
1
"
SETTINGS
=
"
$SETTINGS
-e MPICH_MPIIO_HINTS=*:cray_cb_nodes_multiplier=
$AGGR_MULT
"
}
updateSettings
function
outputFile
()
{
OUTPUT
=
"
$HOME
/PUB-IPDPS18/dat/mem_abstraction"
OUTPUT
=
"
${
OUTPUT
}
/HACC_XC40_
${
BIN
}
_
${
NODES
}
_
${
PPN
}
"
OUTPUT
=
"
${
OUTPUT
}
_
${
TAPIOCA_STRATEGY
}
_
${
TAPIOCA_NBAGGR
}
_
${
TAPIOCA_BUFFERSIZE
}
_
${
PARTICLES
}
"
}
PARTICLES
=
25000
BIN
=
miniHACC-AoS
setLustreFS
updateSettings
setLustreFS
>>
$OUTPUT
$DDT
aprun
$SETTINGS
-n
$NPROCS
-N
$PPN
./
$BIN
$PARTICLES
tapioca.cpp
View file @
984b2b17
...
...
@@ -414,8 +414,8 @@ void Tapioca::InitAggregators ()
{
int
aggr
,
retval
;
this
->
memBuffer0
.
memAlloc
(
this
->
bufferSize_
,
DDR
,
this
->
amAnAggr_
,
NULL
,
this
->
subComm_
);
this
->
memBuffer1
.
memAlloc
(
this
->
bufferSize_
,
DDR
,
this
->
amAnAggr_
,
NULL
,
this
->
subComm_
);
this
->
memBuffer0
.
memAlloc
(
this
->
bufferSize_
,
DDR
,
this
->
amAnAggr_
,
""
,
this
->
subComm_
);
this
->
memBuffer1
.
memAlloc
(
this
->
bufferSize_
,
DDR
,
this
->
amAnAggr_
,
""
,
this
->
subComm_
);
#ifdef DEBUG
if
(
this
->
commRank_
==
MASTER
)
{
...
...
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