add npu for model export

Former-commit-id: 07045c876a
This commit is contained in:
MengqingCao
2024-06-05 07:06:40 +00:00
parent 51e3229528
commit 15f6ab73a5
2 changed files with 3 additions and 3 deletions

View File

@@ -145,9 +145,9 @@ class ModelArguments:
default=1,
metadata={"help": "The file shard size (in GB) of the exported model."},
)
export_device: Literal["cpu", "cuda"] = field(
export_device: Literal["cpu", "cuda", "npu"] = field(
default="cpu",
metadata={"help": "The device used in model export, use cuda to avoid addmm errors."},
metadata={"help": "The device used in model export, use cuda to avoid addmm errors; use npu/cuda to speed up exporting."},
)
export_quantization_bit: Optional[int] = field(
default=None,