101 lines
2.8 KiB
C++
101 lines
2.8 KiB
C++
// Copyright (c) 2023 PaddlePaddle Authors. All Rights Reserved.
|
|
//
|
|
// 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.
|
|
|
|
#pragma once
|
|
|
|
#include "paddle/pir/include/core/dialect.h"
|
|
|
|
namespace paddle {
|
|
namespace dialect {
|
|
|
|
class KernelDialect : public pir::Dialect {
|
|
public:
|
|
TEST_API explicit KernelDialect(pir::IrContext* context);
|
|
|
|
static const char* name() { return "pd_kernel"; }
|
|
|
|
void PrintType(pir::Type type, std::ostream& os) const override;
|
|
|
|
void PrintAttribute(pir::Attribute attr, std::ostream& os) const override;
|
|
|
|
pir::OpPrintFn PrintOperation(
|
|
const pir::Operation& op) const override; // NOLINT
|
|
|
|
private:
|
|
void initialize();
|
|
};
|
|
|
|
class CustomKernelDialect : public pir::Dialect {
|
|
public:
|
|
explicit CustomKernelDialect(pir::IrContext* context);
|
|
|
|
static const char* name() { return "custom_kernel"; }
|
|
|
|
void PrintType(pir::Type type, std::ostream& os) const override;
|
|
|
|
void PrintAttribute(pir::Attribute attr, std::ostream& os) const override;
|
|
|
|
pir::OpPrintFn PrintOperation(
|
|
const pir::Operation& op) const override; // NOLINT
|
|
|
|
private:
|
|
void initialize();
|
|
};
|
|
|
|
class PythonFunctionDialect : public pir::Dialect {
|
|
public:
|
|
explicit PythonFunctionDialect(pir::IrContext* context);
|
|
|
|
static const char* name() { return "py_func"; }
|
|
|
|
void PrintType(pir::Type type, std::ostream& os) const override;
|
|
|
|
void PrintAttribute(pir::Attribute attr, std::ostream& os) const override;
|
|
|
|
pir::OpPrintFn PrintOperation(
|
|
const pir::Operation& op) const override; // NOLINT
|
|
|
|
private:
|
|
void initialize();
|
|
};
|
|
|
|
#ifdef PADDLE_WITH_DNNL
|
|
class OneDNNKernelDialect : public pir::Dialect {
|
|
public:
|
|
explicit OneDNNKernelDialect(pir::IrContext* context);
|
|
|
|
static const char* name() { return "onednn_kernel"; }
|
|
|
|
void PrintType(pir::Type type, std::ostream& os) const override;
|
|
|
|
void PrintAttribute(pir::Attribute attr, std::ostream& os) const override;
|
|
|
|
pir::OpPrintFn PrintOperation(
|
|
const pir::Operation& op) const override; // NOLINT
|
|
|
|
private:
|
|
void initialize();
|
|
};
|
|
#endif
|
|
|
|
} // namespace dialect
|
|
} // namespace paddle
|
|
|
|
IR_DECLARE_EXPLICIT_TYPE_ID(paddle::dialect::KernelDialect)
|
|
IR_DECLARE_EXPLICIT_TYPE_ID(paddle::dialect::CustomKernelDialect)
|
|
IR_DECLARE_EXPLICIT_TYPE_ID(paddle::dialect::PythonFunctionDialect)
|
|
#ifdef PADDLE_WITH_DNNL
|
|
IR_DECLARE_EXPLICIT_TYPE_ID(paddle::dialect::OneDNNKernelDialect)
|
|
#endif
|