We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is in response to someone trying to run in compat mode and not knowing that they needed to use compatibility=1
compatibility=1
I'm not sure where to put something like this. There's print_environment.spec.ts but I think that happens too late.
print_environment.spec.ts
Effectively,
if gpu doesn't exist we should print a message
gpu
No WebGPU
if requestAdapter returns null should print a message like
requestAdapter
Failed to get an adapter. If you meant to run in compatibility mode add compatibility=1 to the URL or --compat in dawn.node or other tools
--compat
Since we wrap requestAdapter, maybe we could check this on first call to it? But I'm not sure how to surface the message.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is in response to someone trying to run in compat mode and not knowing that they needed to use
compatibility=1
I'm not sure where to put something like this. There's
print_environment.spec.ts
but I think that happens too late.Effectively,
if
gpu
doesn't exist we should print a messageif
requestAdapter
returns null should print a message likeSince we wrap
requestAdapter
, maybe we could check this on first call to it? But I'm not sure how to surface the message.The text was updated successfully, but these errors were encountered: