mirror of https://github.com/llvm/torch-mlir
25 lines
784 B
C++
25 lines
784 B
C++
//===- Interfaces.h - Interfaces for IR types -----------------------------===//
|
|
//
|
|
// Part of the LLVM Project, 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef NPCOMP_TYPING_ANALYSIS_CPA_INTERFACES_H
|
|
#define NPCOMP_TYPING_ANALYSIS_CPA_INTERFACES_H
|
|
|
|
#include "mlir/IR/OpDefinition.h"
|
|
#include "mlir/IR/Types.h"
|
|
|
|
#include "npcomp/Typing/Analysis/CPA/Support.h"
|
|
|
|
namespace mlir {
|
|
|
|
#include "npcomp/Typing/Analysis/CPA/OpInterfaces.h.inc"
|
|
#include "npcomp/Typing/Analysis/CPA/TypeInterfaces.h.inc"
|
|
|
|
} // namespace mlir
|
|
|
|
#endif // NPCOMP_TYPING_ANALYSIS_CPA_INTERFACES_H
|