Skip to content

Commit

Permalink
update exp array [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengqmark committed Jan 26, 2019
1 parent e516b4f commit 696484e
Showing 1 changed file with 35 additions and 7 deletions.
42 changes: 35 additions & 7 deletions scripts/vpicexpt_gen.pl.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ use strict;
##############################################################################
# define experiments here
##############################################################################
my(%TOC, @minimal, @dwtest, @fanrun, @sc17a,
@pd18a, @pd18b, @pd18c, @pd18d, @pd18e, @pd18f,
@pd18h, @pd18i, @pd18j, @pd18x, @pd18y,
@sc18a, @sc18b, @sc18c, @sc18d, @sc18e, @sc18f,
@sc18k, @sc18l, @sc18r, @sc18n, @sc18s, @sc18w,
@sc17b, @sc17ba, @sc17bb, @sc17bi, @sc17bj, @sc17br, @sc17bx,
@sc17c, @sc17cx);
my(%TOC, @minimal, @dwtest, @fanrun, @cs19a, @cs19b,
@pd18a, @pd18b, @pd18c, @pd18d, @pd18e, @pd18f, @pd18h,
@pd18i, @pd18j, @pd18x, @pd18y, @sc18a, @sc18b, @sc18c,
@sc18d, @sc18e, @sc18f, @sc18k, @sc18l, @sc18r, @sc18n,
@sc18s, @sc18w, @sc17a, @sc17b, @sc17ba, @sc17bb,
@sc17bi, @sc17bj, @sc17br, @sc17bx, @sc17c,
@sc17cx);

# minimal: for quick tests of script infrastructure
@minimal = (
Expand Down Expand Up @@ -57,6 +57,32 @@ my(%TOC, @minimal, @dwtest, @fanrun, @sc17a,
[ 64, 8, 1000, 16, 4, 0, 0, 1, 1, 8, 100, 0, "25GiB"],
);

# cs19a: for the ics19 KNL paper
@cs19a = (
# vpic vpic max base
# nodes, dumps, steps, px, py, pz, tx, ty, tz, ppn, time, xtra, dwsize
[ 1, 1, 25, 2, 2, 0, 0, 1, 1, 68, 10, 1, "32GiB"],
[ 1, 1, 25, 8, 4, 0, 0, 1, 1, 68, 150, 10, "192GiB"],
[ 2, 1, 25, 8, 4, 0, 0, 1, 1, 68, 150, 10, "192GiB"],
[ 4, 1, 25, 8, 4, 0, 0, 1, 1, 68, 150, 10, "192GiB"],
[ 8, 1, 25, 8, 4, 0, 0, 1, 1, 68, 150, 10, "384GiB"],
[ 16, 1, 25, 8, 4, 0, 0, 1, 1, 68, 150, 10, "768GiB"],
[ 32, 1, 25, 8, 4, 0, 0, 1, 1, 68, 150, 10, "1536GiB"],
);

# cs19b: for the ics19 KNL paper
@cs19b = (
# vpic vpic max base
# nodes, dumps, steps, px, py, pz, tx, ty, tz, ppn, time, xtra, dwsize
[ 1, 1, 25, 2, 2, 0, 0, 1, 1, 32, 10, 1, "32GiB"],
[ 1, 1, 25, 16, 4, 0, 0, 1, 1, 32, 150, 10, "192GiB"],
[ 2, 1, 25, 16, 4, 0, 0, 1, 1, 32, 150, 10, "192GiB"],
[ 4, 1, 25, 16, 4, 0, 0, 1, 1, 32, 150, 10, "192GiB"],
[ 8, 1, 25, 16, 4, 0, 0, 1, 1, 32, 150, 10, "384GiB"],
[ 16, 1, 25, 16, 4, 0, 0, 1, 1, 32, 150, 10, "768GiB"],
[ 32, 1, 25, 16, 4, 0, 0, 1, 1, 32, 150, 10, "1536GiB"],
);

# pd18a: for the pdsw18 KNL paper
@pd18a = (
# vpic vpic max base
Expand Down Expand Up @@ -505,6 +531,8 @@ my(%TOC, @minimal, @dwtest, @fanrun, @sc17a,
%TOC = (
"minimal" => [ \@minimal, \&stdpost_2d ],
"dwtest" => [ \@dwtest, \&stdpost_2d ],
"cs19a" => [ \@cs19a, \&stdpost_2d ],
"cs19b" => [ \@cs19b, \&stdpost_2d ],
"pd18a" => [ \@pd18a, \&stdpost_2d ],
"pd18b" => [ \@pd18b, \&stdpost_2d ],
"pd18c" => [ \@pd18c, \&stdpost_2d ],
Expand Down

0 comments on commit 696484e

Please sign in to comment.