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
codes
workloads
Commits
7eda90b2
Commit
7eda90b2
authored
May 15, 2018
by
Misbah Mubarak
Browse files
adding large-scale configurations, removing debug statements
parent
823d8957
Changes
4
Hide whitespace changes
Inline
Side-by-side
swm/src/lammps/lammps_workload.json
View file @
7eda90b2
...
...
@@ -3,7 +3,7 @@
"name"
:
"StandaloneSWM"
,
"app"
:
"dll"
,
"dll_path"
:
"apps/dll/lammps.so"
,
"size"
:
1024
,
"size"
:
2048
,
"time"
:
0
,
"cfg"
:
{
...
...
swm/src/nearest_neighbor/nearest_neighbor_swm_user_code.cpp
View file @
7eda90b2
...
...
@@ -252,13 +252,13 @@ NearestNeighborSWMUserCode::call()
coords
.
clear
();
pid_again
=
0
;
xlat_pid_to_coords
(
pid
,
coords
);
std
::
cout
<<
"pid "
<<
pid
<<
" has coords.size "
<<
coords
.
size
()
<<
" "
;
for
(
size_t
i
=
0
;
i
<
coords
.
size
();
i
++
)
{
std
::
cout
<<
" "
<<
coords
[
i
];
}
std
::
cout
<<
"; which have pid "
;
xlat_coords_to_pid
(
coords
,
pid_again
);
std
::
cout
<<
pid_again
<<
endl
;
//
std::cout << "pid " << pid << " has coords.size " << coords.size() << " ";
//
for(size_t i=0; i<coords.size(); i++) {
//
std::cout << " " << coords[i];
//
}
//
std::cout << "; which have pid ";
//
xlat_coords_to_pid(coords, pid_again);
//
std::cout << pid_again << endl;
}
}
...
...
@@ -292,7 +292,7 @@ NearestNeighborSWMUserCode::call()
uint32_t
iter_before_sync
=
0
;
uint32_t
neighbors_size
=
neighbors
.
size
();
uint32_t
pkt_rsp_bytes
=
0
;
for
(
uint32_t
iter
=
0
;
iter
<
iteration_cnt
;
iter
++
)
{
...
...
swm/src/nearest_neighbor/skeleton.json
View file @
7eda90b2
...
...
@@ -4,7 +4,7 @@
"size"
:
4096
,
"cfg"
:
{
"app"
:
"nearest_neighbor"
,
"iteration_cnt"
:
10
0
,
"iteration_cnt"
:
5
0
,
"compute_delay"
:
0
,
"noop_cnt"
:
0
,
"dimension_cnt"
:
3
,
...
...
swm/src/nekbone/nekbone_swm_user_code.cpp
View file @
7eda90b2
...
...
@@ -97,7 +97,7 @@ NEKBONESWMUserCode::NEKBONESWMUserCode(
//Total number of ranks
Rtotal
=
Rx
*
Ry
*
Rz
;
std
::
cout
<<
"RX: "
<<
Rx
<<
" | RY: "
<<
Ry
<<
" | RZ: "
<<
Rz
<<
" total=RX*RY*RZ: "
<<
Rtotal
<<
" vs. process_cnt: "
<<
process_cnt
<<
std
::
endl
;
//
std::cout << "RX: " << Rx << " | RY: " << Ry << " | RZ: " << Rz << " total=RX*RY*RZ: " << Rtotal << " vs. process_cnt: " << process_cnt << std::endl;
assert
(
Rtotal
==
process_cnt
);
...
...
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