Views
No views yet
.pte export of Qwen/Qwen3-1.7B for CPU inference via the XNNPACK backend, with post-training quantization enabled.model.pte: ExecuTorch programtokenizer.json, vocab.json, merges.txt: tokenizer artifactsconfig.json, generation_config.json, tokenizer_config.json: metadata files from the upstream Hugging Face repo--qlinear 8da4w: linear layers use 8-bit dynamic activations + 4-bit weights--qembedding 8w: embeddings use 8-bit weightstext-generationxnnpack--use_custom_sdpa --use_custom_kv_cacheexecutorch==1.2.0a0+d265acf (git d265acfb63)optimum-executorch==0.2.0.dev0 (git 4c62ed77)1optimum-cli export executorch \
2 --model "Qwen/Qwen3-1.7B" \
3 --task "text-generation" \
4 --recipe "xnnpack" \
5 --use_custom_sdpa \
6 --use_custom_kv_cache \
7 --qlinear "8da4w" \
8 --qembedding "8w" \
9 --output_dir "<output_dir>"make llama-cpucmake-out/examples/models/llama/llama_main1cmake-out/examples/models/llama/llama_main \
2 --model_path "model.pte" \
3 --tokenizer_path "tokenizer.json" \
4 --prompt "Simply put, the theory of relativity states that" \
5 --max_new_tokens 48 \
6 --temperature 0