diff --git a/src/rocprof_compute_soc/soc_gfx940.py b/src/rocprof_compute_soc/soc_gfx940.py index f2e8da477..3e5df980d 100644 --- a/src/rocprof_compute_soc/soc_gfx940.py +++ b/src/rocprof_compute_soc/soc_gfx940.py @@ -109,4 +109,6 @@ def analysis_setup(self, roofline_parameters=None): super().analysis_setup() # configure roofline for analysis if roofline_parameters: - self.roofline_obj = Roofline(self.get_args(), roofline_parameters) + self.roofline_obj = Roofline( + self.get_args(), self._mspec, roofline_parameters + ) diff --git a/src/rocprof_compute_soc/soc_gfx941.py b/src/rocprof_compute_soc/soc_gfx941.py index 4aafacd81..412e3b15f 100644 --- a/src/rocprof_compute_soc/soc_gfx941.py +++ b/src/rocprof_compute_soc/soc_gfx941.py @@ -109,4 +109,6 @@ def analysis_setup(self, roofline_parameters=None): super().analysis_setup() # configure roofline for analysis if roofline_parameters: - self.roofline_obj = Roofline(self.get_args(), roofline_parameters) + self.roofline_obj = Roofline( + self.get_args(), self._mspec, roofline_parameters + ) diff --git a/src/rocprof_compute_soc/soc_gfx942.py b/src/rocprof_compute_soc/soc_gfx942.py index 76325be19..6c14cc686 100644 --- a/src/rocprof_compute_soc/soc_gfx942.py +++ b/src/rocprof_compute_soc/soc_gfx942.py @@ -114,4 +114,6 @@ def analysis_setup(self, roofline_parameters=None): super().analysis_setup() # configure roofline for analysis if roofline_parameters: - self.roofline_obj = Roofline(self.get_args(), roofline_parameters) + self.roofline_obj = Roofline( + self.get_args(), self._mspec, roofline_parameters + )