torch-mlir/lib/Dialect/Numpy/IR/NumpyOps.cpp

24 lines
821 B
C++
Raw Normal View History

2020-04-27 08:20:58 +08:00
//===- NumpyOps.cpp - Core numpy dialect ops --------------------*- 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 "npcomp/Dialect/Numpy/IR/NumpyOps.h"
#include "mlir/IR/Builders.h"
#include "mlir/IR/FunctionImplementation.h"
2020-04-27 08:20:58 +08:00
#include "mlir/IR/OpImplementation.h"
#include "npcomp/Dialect/Basicpy/IR/BasicpyDialect.h"
#include "npcomp/Dialect/Numpy/IR/NumpyDialect.h"
2020-04-27 08:20:58 +08:00
namespace mlir {
namespace NPCOMP {
2020-04-30 09:20:42 +08:00
namespace Numpy {
2020-04-27 08:55:15 +08:00
#define GET_OP_CLASSES
#include "npcomp/Dialect/Numpy/IR/NumpyOps.cpp.inc"
2020-04-30 09:20:42 +08:00
} // namespace Numpy
} // namespace NPCOMP
2020-04-27 08:20:58 +08:00
} // namespace mlir