1 //===- ConvertAVX512ToLLVM.h - Conversion Patterns from AVX512 to LLVM ----===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef MLIR_CONVERSION_AVX512TOLLVM_CONVERTAVX512TOLLVM_H_ 10 #define MLIR_CONVERSION_AVX512TOLLVM_CONVERTAVX512TOLLVM_H_ 11 12 namespace mlir { 13 14 class LLVMTypeConverter; 15 class OwningRewritePatternList; 16 17 /// Collect a set of patterns to convert from the AVX512 dialect to LLVM. 18 void populateAVX512ToLLVMConversionPatterns(LLVMTypeConverter &converter, 19 OwningRewritePatternList &patterns); 20 21 } // namespace mlir 22 23 #endif // MLIR_CONVERSION_AVX512TOLLVM_CONVERTAVX512TOLLVM_H_ 24