dialect.hpp 1.67 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//*****************************************************************************
// Copyright 2017-2019 Intel Corporation
//
// 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
        mlir::Type parseType(llvm::StringRef tyData, mlir::Location loc) const override
38
        {
39
            NGRAPH_CHECK(false, "Unsupported type parsing.");
40
            return mlir::Type();
41
        }
42
        void printType(mlir::Type type, llvm::raw_ostream& os) const override;
43 44

        static StringRef getDialectNamespace() { return "ng"; }
45
    };
46
}