torch-mlir/include/npcomp/Dialect/Numpy/NumpyDialect.td

44 lines
1.5 KiB
TableGen
Raw Normal View History

2020-04-27 08:20:58 +08:00
//===- NumpyDialect.td - Core numpy dialect ----------------*- tablegen -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef NPCOMP_DIALECT_NUMPY_NUMPY_DIALECT
#define NPCOMP_DIALECT_NUMPY_NUMPY_DIALECT
include "mlir/IR/OpBase.td"
2020-04-30 08:49:56 +08:00
//===----------------------------------------------------------------------===//
// Dialect definition
//===----------------------------------------------------------------------===//
2020-04-27 08:20:58 +08:00
def Numpy_Dialect : Dialect {
let name = "numpy";
let summary = "Core numpy dialect";
let description = [{
Dialect of types and core numpy ops and abstractions.
}];
let cppNamespace = "numpy";
2020-04-27 08:20:58 +08:00
}
2020-04-30 08:49:56 +08:00
//===----------------------------------------------------------------------===//
// Op templates
//===----------------------------------------------------------------------===//
2020-04-27 08:20:58 +08:00
class Numpy_Op<string mnemonic, list<OpTrait> traits = []> :
Op<Numpy_Dialect, mnemonic, traits> {
let parser = [{ return parse$cppClass(parser, &result); }];
let printer = [{ return print$cppClass(p, *this); }];
}
2020-04-27 08:20:58 +08:00
2020-04-30 08:49:56 +08:00
//===----------------------------------------------------------------------===//
// Type predicates
//===----------------------------------------------------------------------===//
def Numpy_AnyArray : TensorOf<[AnyType]>;
2020-04-27 08:20:58 +08:00
#endif // NPCOMP_DIALECT_NUMPY_NUMPY_DIALECT