• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===- LLVMAVX512Dialect.cpp - MLIR LLVMAVX512 ops implementation ---------===//
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 // This file implements the LLVMAVX512 dialect and its operations.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "llvm/IR/IntrinsicsX86.h"
14 
15 #include "mlir/Dialect/LLVMIR/LLVMAVX512Dialect.h"
16 #include "mlir/Dialect/LLVMIR/LLVMDialect.h"
17 #include "mlir/IR/Builders.h"
18 #include "mlir/IR/OpImplementation.h"
19 #include "mlir/IR/TypeUtilities.h"
20 
21 using namespace mlir;
22 
initialize()23 void LLVM::LLVMAVX512Dialect::initialize() {
24   addOperations<
25 #define GET_OP_LIST
26 #include "mlir/Dialect/LLVMIR/LLVMAVX512.cpp.inc"
27       >();
28 }
29 
30 #define GET_OP_CLASSES
31 #include "mlir/Dialect/LLVMIR/LLVMAVX512.cpp.inc"
32