diff --git a/config.mk b/config.mk index 7149b81..39be6d3 100644 --- a/config.mk +++ b/config.mk @@ -6,7 +6,7 @@ DATA_TYPE ?= DP # AOS or SOA DATA_LAYOUT ?= AOS -# Number of times to run the neighbors loop +# Number of times to run the neighbors loop on stubbed variant NEIGHBORS_LOOP_RUNS ?= 1 # Explicitly store and load atom types EXPLICIT_TYPES ?= false diff --git a/util/plot_gather_data.py b/util/plot_gather_data.py index 5744933..9bcfee0 100644 --- a/util/plot_gather_data.py +++ b/util/plot_gather_data.py @@ -24,7 +24,7 @@ with open(filename, 'r') as fp: if len(line) <= 0 or "likwid-pin" in line: continue - if line.startswith("Stride,"): + if line.startswith("ISA,"): status = 1 md_case = True if "Dims" in line else False continue @@ -37,9 +37,9 @@ with open(filename, 'r') as fp: if status == 1: if md_case: - stride, dims, freq, cl_size, vector_width, cache_lines_per_gather = line.split(',') + isa, layout, stride, dims, freq, cl_size, vector_width, cache_lines_per_gather = line.split(',') else: - stride, freq, cl_size, vector_width, cache_lines_per_gather = line.split(',') + isa, stride, freq, cl_size, vector_width, cache_lines_per_gather = line.split(',') stride = int(stride) continue