// 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. #include "paddle/fluid/dialect/pd_dialect.h" #include "paddle/fluid/dialect/pd_attribute.h" // NOTE(zhangbo9674): File pd_op.h is generated by op_gen.py, see details in // paddle/fluid/dialect/CMakeLists.txt. #include "paddle/fluid/dialect/pd_op.h" #include "paddle/fluid/dialect/pd_type.h" #include "paddle/fluid/dialect/pd_type_storage.h" #include "paddle/fluid/dialect/utils.h" #include "paddle/fluid/framework/convert_utils.h" #include "paddle/fluid/framework/data_type.h" #include "paddle/ir/core/dialect_interface.h" #include "paddle/phi/core/dense_tensor.h" namespace paddle { namespace dialect { std::shared_ptr ParameterConvertInterface::ParameterToVariable(ir::Parameter *parameter) { if (parameter->type().isa()) { VLOG(4) << "Convert a DenseTensor Parameter to a variable."; std::shared_ptr var = std::make_shared(); phi::DenseTensor *tensor = var->GetMutable(); // Init DenseTensor auto dim = parameter->type().dyn_cast().dims(); phi::DenseTensorMeta meta( TransToPhiDataType( parameter->type().dyn_cast().dtype()), dim, parameter->type().dyn_cast().data_layout(), parameter->type().dyn_cast().lod(), parameter->type().dyn_cast().offset()); tensor->set_meta(meta); paddle::platform::DeviceContext *dev_ctx = paddle::platform::DeviceContextPool::Instance().Get( paddle::platform::CPUPlace()); dev_ctx->Alloc(tensor, TransToPhiDataType( parameter->type().dyn_cast().dtype())); memcpy(tensor->data(), parameter->data(), tensor->numel() * phi::SizeOf(tensor->dtype())); return var; } else { return nullptr; } } std::unique_ptr ParameterConvertInterface::VariableToParameter( paddle::framework::Variable *var) { if (var->IsType()) { phi::DenseTensor *tensor = var->GetMutable(); // Get Meta ir::IrContext *ctx = ir::IrContext::Instance(); ir::Type data_type = TransToIrDataType(tensor->dtype(), ctx); void *data = tensor->data(); ir::Type dense_tensor_type = DenseTensorType::get(ctx, data_type, tensor->dims(), tensor->layout(), tensor->lod(), tensor->meta().offset); return std::make_unique( data, tensor->numel() * phi::SizeOf(tensor->dtype()), dense_tensor_type); } else { return nullptr; } } PaddleDialect::PaddleDialect(ir::IrContext *context) : ir::Dialect(name(), context, ir::TypeId::get()) { initialize(); } void PaddleDialect::initialize() { RegisterTypes(); RegisterAttributes(); // NOTE(zhangbo9674): GET_OP_LIST is defined in pd_op.h which is // generated by op_gen.py, see details in // paddle/fluid/dialect/CMakeLists.txt. RegisterOps< #define GET_OP_LIST #include "paddle/fluid/dialect/pd_op.h" // NOLINT >(); RegisterInterfaces(); } void PaddleDialect::PrintType(ir::Type type, std::ostream &os) { DenseTensorType tensor_type = type.dyn_cast(); os << "tensor<"; for (auto d : phi::vectorize(tensor_type.dims())) { os << d; os << "x"; } tensor_type.dtype().print(os); os << ">"; } } // namespace dialect } // namespace paddle