Skip to content

Commit 52ebf14

Browse files
refactor: datasets and plotting configuration for preliminary runs
1 parent ad6000e commit 52ebf14

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

scripts/create_grand_datasets.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,16 @@
6767
executable = args.executable
6868
profiler = args.profiler
6969
do_write_runs_datasets = True
70-
do_write_grand_gbxs_dataset = False
71-
do_write_grand_supers_dataset = True
70+
do_write_grand_gbxs_dataset = True
71+
do_write_grand_supers_dataset = False
7272
if args.allow_overwrite == "TRUE":
7373
allow_overwrite = True
7474
else:
7575
allow_overwrite = False
7676
binpath = path2build / "bin" / executable
7777

78-
nsupers_grand_gbxs_datasets = []
79-
ngbxs_grand_supers_datasets = [1]
78+
nsupers_grand_gbxs_datasets = [128]
79+
ngbxs_grand_supers_datasets = []
8080

8181
ngbxs_nsupers_runs = ssv.get_ngbxs_nsupers_runs()
8282
ngbxs_nsupers_nthreads = ssv.get_ngbxs_nsupers_nthreads(

scripts/plotting/basic_kerneltimer_metrics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
buildtype_references = "serial"
5858
nthreads_reference = 1
5959

60-
ensembletype = "supers"
61-
fixed_ensemb_vals = [1]
60+
ensembletype = "gbxs"
61+
fixed_ensemb_vals = [128]
6262

6363
lstyles = hfuncs.buildtype_lstyles
6464
markers = hfuncs.buildtype_markers

scripts/plotting/quickplots.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353

5454
buildtypes = ["serial", "openmp", "cuda", "threads"]
5555

56-
ensembletype = "supers"
57-
fixed_ensemb_vals = [1]
56+
ensembletype = "gbxs"
57+
fixed_ensemb_vals = [128]
5858

5959
lstyles = hfuncs.buildtype_lstyles
6060
markers = hfuncs.buildtype_markers

0 commit comments

Comments
 (0)