Add test case for commit e52bc1d2bba794b.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/test/CodeGen/X86/AMX/amx-intrinsic-chain.ll | ||
---|---|---|
5 | The triple is different from RUN command, you can just remove it. Or remove the mtriple from command line. | |
13 | Does the adding chain that generates more __tile1024i initialization here? | |
64 | I think you can add avx512f in "target-features" and remove -mattr=+amx-int8 -mattr=+avx512f in run line. |
llvm/test/CodeGen/X86/AMX/amx-intrinsic-chain.ll | ||
---|---|---|
13 | Adding chain doesn't generate more __tile1024i initialization. There 5 movb for row, 5 movw for column and movb $1, ... for palette. There are 5 tmm register allocated, so the initialization is correct. |
llvm/test/CodeGen/X86/AMX/amx-intrinsic-chain.ll | ||
---|---|---|
13 | One of the tilestore is deleted during instruction selection if we don't add chain. |
The triple is different from RUN command, you can just remove it. Or remove the mtriple from command line.