Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
As we noticed in SHA512's spec, it mentions AVX in "CPUID Feature Flag" only, but from software view, we can promote it to AVX2 as all machines having SHA512 have AVX2. Just like VAES here.
llvm/lib/TargetParser/X86TargetParser.cpp | ||
---|---|---|
624 | If so ,shouldn't we update X86.td too? |
Comment Actions
Like we did before for AVXNECONVERT, AVXIFMA, AVXVNNI. These ISA supports %ymm and operates on integers. And AVX2 is the first ISA is capable of that.
If so ,shouldn't we update X86.td too?