find_close_gpu_model_name#

impacthpc.find_close_gpu_model_name(name: str, threshold: float = 80) FuzzymatchResult | None#

Fuzzymatch search for close GPU model names from a dataset using fuzzy matching on name and variant. This method can return zero (None),one (FuzzymatchSingleResult) or several matches (FuzzymatchMultipleResult). Returns the exact name of the GPU, making it suitable to use with GPU class.

Parameters:
  • name (str) – The user input string to search for.

  • threshold (float, optional) – The minimum similarity score (0–100) to consider a match. Defaults to 80.

Returns:

  • FuzzymatchSingleResult if a single good match is found.

  • FuzzymatchMultipleResult if multiple results are above the threshold.

  • None if no suitable match is found.

Return type:

FuzzymatchResult | None