Skip to content

Commit

Permalink
Attempt to fix unittest issue
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-braf committed Jun 6, 2024
1 parent 3a07fc0 commit c1acbe1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model_analyzer/config/generate/search_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.

from math import log2
from typing import Any, Dict, List, Optional, Tuple
from typing import Any, Dict, List, Optional, Tuple, Union

from model_analyzer.config.input.config_command_profile import ConfigCommandProfile
from model_analyzer.model_analyzer_exceptions import TritonModelAnalyzerException
Expand Down Expand Up @@ -239,7 +239,7 @@ def _is_max_queue_delay_in_model_config_parameters(self) -> bool:
def _populate_list_parameter(
self,
parameter_name: str,
parameter_list: List[int | str],
parameter_list: List[Union[int, str]],
parameter_category: ParameterCategory,
) -> None:
usage = self._determine_parameter_usage(parameter_name)
Expand Down

0 comments on commit c1acbe1

Please sign in to comment.