fix for stoichastic kernel dispatch selection
Signed-off-by: Nicholas Curtis <nicurtis@amd.com>
This commit is contained in:
@@ -763,11 +763,8 @@ def apply_filters(workload, is_gui, debug):
|
|||||||
ret_df[schema.pmc_perf_file_prefix]["Index"] > int(m.group(1))
|
ret_df[schema.pmc_perf_file_prefix]["Index"] > int(m.group(1))
|
||||||
]
|
]
|
||||||
else:
|
else:
|
||||||
ret_df = ret_df.loc[
|
dispatches = [int(x) for x in workload.filter_dispatch_ids]
|
||||||
ret_df[schema.pmc_perf_file_prefix]["Index"]
|
ret_df = ret_df.loc[dispatches]
|
||||||
.astype(str)
|
|
||||||
.isin(workload.filter_dispatch_ids)
|
|
||||||
]
|
|
||||||
if debug:
|
if debug:
|
||||||
print("~" * 40, "\nraw pmc df info:\n")
|
print("~" * 40, "\nraw pmc df info:\n")
|
||||||
print(workload.raw_pmc.info())
|
print(workload.raw_pmc.info())
|
||||||
|
|||||||
Reference in New Issue
Block a user