-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathPolygeistDialect.cpp
More file actions
27 lines (22 loc) · 969 Bytes
/
PolygeistDialect.cpp
File metadata and controls
27 lines (22 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//===- PolygeistDialect.cpp - Polygeist dialect ---------------*- C++ -*-===//
//
// This file is licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir/Dialect/Polygeist/IR/PolygeistDialect.h"
#include "mlir/Dialect/Polygeist/IR/PolygeistOps.h"
#include "mlir/IR/DialectImplementation.h"
using namespace mlir;
using namespace mlir::polygeist;
//===----------------------------------------------------------------------===//
// Polygeist dialect.
//===----------------------------------------------------------------------===//
void PolygeistDialect::initialize() {
addOperations<
#define GET_OP_LIST
#include "mlir/Dialect/Polygeist/IR/PolygeistOps.cpp.inc"
>();
}
#include "mlir/Dialect/Polygeist/IR/PolygeistOpsDialect.cpp.inc"