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
clif-util run -v
I constructed a clif file.
multi_func8.zip
I used the following command to run it.
clif-util run -v multi_func8.clif
And I got the following error message:
cases/multi_func8.clif: Compilation error: Unsupported feature: should be implemented in ISLE: inst = `store.f16x8 notrap aligned little v2, v1`, type = `None` 1 file Error: 1 failure
I think the error is triggered by the store.f16x8 instruction, but I can't find any store.f16x8 instruction in this clif file.
store.f16x8
The text was updated successfully, but these errors were encountered:
It is possible that the store.f16x8 is introduced by optimizations given that you enabled optimizations using set opt_level=speed.
set opt_level=speed
Sorry, something went wrong.
Is it necessary to adjust the optimization strategy to avoid similar issues from occurring?
I would recommend avoiding f16 entirely until Cranelift has proper support for it.
No branches or pull requests
I constructed a clif file.
multi_func8.zip
I used the following command to run it.
And I got the following error message:
I think the error is triggered by the
store.f16x8
instruction, but I can't find anystore.f16x8
instruction in this clif file.The text was updated successfully, but these errors were encountered: