Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Thanks, Aart! LGTM. Just minor comments.
mlir/test/Integration/Dialect/Vector/CPU/AMX/test-muli-ext.mlir | ||
---|---|---|
7 | There's probably nothing for AMX but there is a way to specify lit test requirements. For example, we have tests in LLVM with: ; REQUIRES: x86-registered-target that won't execute if the x86 target is not registered. Honestly, I don't know how this mechanism works but maybe it's worth having a look. | |
23 | nit: indentation, here and below. |
mlir/test/Integration/Dialect/Vector/CPU/AMX/test-muli-ext.mlir | ||
---|---|---|
7 | Yes, thanks for this pointer. For now, this test is configured with MLIR_RUN_AMX_TESTS and a path to an emulator, but in the long run, we need to automatize the runs of course. |
There's probably nothing for AMX but there is a way to specify lit test requirements. For example, we have tests in LLVM with:
that won't execute if the x86 target is not registered. Honestly, I don't know how this mechanism works but maybe it's worth having a look.