abc767234318 opened issue #9684:
I constructed a clif file.
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 anystore.f16x8
instruction in this clif file.
bjorn3 commented on issue #9684:
It is possible that the store.f16x8 is introduced by optimizations given that you enabled optimizations using
set opt_level=speed
.
abc767234318 commented on issue #9684:
It is possible that the store.f16x8 is introduced by optimizations given that you enabled optimizations using
set opt_level=speed
.Is it necessary to adjust the optimization strategy to avoid similar issues from occurring?
bjorn3 commented on issue #9684:
I would recommend avoiding f16 entirely until Cranelift has proper support for it.
Last updated: Dec 23 2024 at 12:05 UTC