Skip to content

Commit 19e55e4

Browse files
change function name
1 parent 47252f7 commit 19e55e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

model_compression_toolkit/wrapper/mct_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def _select_method(self) -> None:
207207
# Use standard GPTQ parameter configuration
208208
self._setting_PTQparam = self._setting_GPTQ
209209

210-
def select_argname(self) -> None:
210+
def _select_argname(self) -> None:
211211
"""
212212
Select argument names based on the framework and method.
213213
@@ -486,7 +486,7 @@ def quantize_and_export(self, float_model: Any, method: str, framework: str,
486486
self._select_method()
487487

488488
# Step 5: Select framework-specific argument names
489-
self.select_argname()
489+
self._select_argname()
490490

491491
# Step 6: Configure Target Platform Capabilities
492492
self._get_tpc()

0 commit comments

Comments
 (0)