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.
1 parent d024469 commit ab869ffCopy full SHA for ab869ff
gpustack_runtime/detector/ascend.py
@@ -339,6 +339,7 @@ def _get_device_virtual_info(
339
"Ascend910_9382": 253,
340
"Ascend910_9372": 254,
341
"Ascend910_9362": 255,
342
+ "Ascend910_95": 260,
343
}
344
345
@@ -401,6 +402,8 @@ def get_ascend_cann_variant(name: str | None) -> str | None:
401
402
if version <= 0:
403
return None
404
if version < 200:
405
+ if version == 104:
406
+ return "910b"
407
return "910"
408
if version < 220:
409
return "310p"
@@ -410,4 +413,6 @@ def get_ascend_cann_variant(name: str | None) -> str | None:
410
413
return "310b"
411
414
if version < 260:
412
415
return "a3" # 910c
416
+ if version < 270:
417
+ return "a5" # 910d
418
0 commit comments