We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
platforms/interface.py
1 parent 3ad986c commit 889ebb2Copy full SHA for 889ebb2
vllm/platforms/interface.py
@@ -410,8 +410,8 @@ def __getattr__(self, key: str):
410
if device is not None and hasattr(device, key):
411
return getattr(device, key)
412
else:
413
- logger.warning("Current platform %s doesn't has '%s' attribute.",
414
- self.device_name, key)
+ logger.warning("Current platform %s does not have '%s'" \
+ " attribute.", self.device_name, key)
415
return None
416
417
@classmethod
0 commit comments