Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warn if wrong type is given for Llama export for XNNPACK #8195

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions examples/models/llama/export_llama_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,12 @@ def _validate_args(args):
"If you need this feature, please file an issue."
)

if args.xnnpack:
if args.dtype_override not in ["fp32", "fp16"]:
raise ValueError(
f"XNNPACK supports either fp32 or fp16 dtypes only for now. Given {args.dtype_override}."
)


def _export_llama(args) -> LLMEdgeManager: # noqa: C901
_validate_args(args)
Expand Down
Loading