diff --git a/tuna/rocmlir/rocmlir_worker.py b/tuna/rocmlir/rocmlir_worker.py index 4764bfd3..72733c66 100644 --- a/tuna/rocmlir/rocmlir_worker.py +++ b/tuna/rocmlir/rocmlir_worker.py @@ -71,7 +71,7 @@ def update_result_table(self, session, result_str): """update results table with individual result entry""" obj = self.dbt.results() - arch, num_cu, num_chiplets, config, perf_config, tflops = obj.parse(result_str) + arch, num_cu, num_chiplets, config, perf_config, tflops = obj.parse(result_str)[:6] print(f"arch = '{arch}', num_cu = '{num_cu}', num_chiplets = '{num_chiplets}', config = '{config}', \ perf_config = '{perf_config}', tflops = {tflops}",