dialect.hpp 1.64 KB
Newer Older
1
//*****************************************************************************
2
// Copyright 2017-2020 Intel Corporation
3 4 5 6 7 8 9 10 11 12 13 14 15
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//*****************************************************************************
16 17 18 19

// NOTE: This file follows nGraph format style and MLIR naming convention since it does
// not expose public API to the rest of nGraph codebase and heavily depends on MLIR API.

20 21 22 23 24 25 26 27 28
#pragma once

#include "mlir/IR/Dialect.h"
#include "mlir/IR/Function.h"
#include "mlir/IR/OpDefinition.h"
#include "mlir/IR/OpImplementation.h"
#include "mlir/IR/StandardTypes.h"
#include "mlir/IR/TypeSupport.h"
#include "mlir/IR/Types.h"
29
#include "ngraph/check.hpp"
30

31
namespace mlir
32
{
33
    class NGraphOpsDialect : public mlir::Dialect
34
    {
35
    public:
36
        explicit NGraphOpsDialect(mlir::MLIRContext* ctx);
37 38 39

        mlir::Type parseType(mlir::DialectAsmParser& parser) const override;
        void printType(mlir::Type type, mlir::DialectAsmPrinter& printer) const override;
40 41

        static StringRef getDialectNamespace() { return "ng"; }
42 43
    private:
        mlir::Type parseEltType(mlir::DialectAsmParser& parser) const;
44
    };
45
}