Skip to content

Commit eee5d96

Browse files
authored
Parakeet: Enable xnnpack by default (#17174)
Now that #17166 is landed, we can enable by default
1 parent b698260 commit eee5d96

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/models/parakeet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ python export_parakeet_tdt.py --audio /path/to/audio.wav
2525
| Argument | Description |
2626
|----------|-------------|
2727
| `--output-dir` | Output directory for exports (default: `./parakeet_tdt_exports`) |
28-
| `--backend` | Backend for acceleration: `portable`, `xnnpack`, `metal`, `cuda`, `cuda-windows` (default: `portable`) |
28+
| `--backend` | Backend for acceleration: `portable`, `xnnpack`, `metal`, `cuda`, `cuda-windows` (default: `xnnpack`) |
2929
| `--dtype` | Data type: `fp32`, `bf16`, `fp16` (default: `fp32`). Metal backend supports `fp32` and `bf16` only (no `fp16`). |
3030
| `--audio` | Path to audio file for transcription test |
3131

examples/models/parakeet/export_parakeet_tdt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,9 +598,9 @@ def main():
598598
parser.add_argument(
599599
"--backend",
600600
type=str,
601-
default="portable",
601+
default="xnnpack",
602602
choices=["portable", "xnnpack", "metal", "cuda", "cuda-windows"],
603-
help="Backend for acceleration (default: portable)",
603+
help="Backend for acceleration (default: xnnpack)",
604604
)
605605
parser.add_argument(
606606
"--dtype",

0 commit comments

Comments
 (0)