/* Copyright (c) 2019 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 #include #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/platform/device_code.h" namespace paddle { namespace operators { template static void MutableMultiTypeData( std::vector* var, const std::vector& data_type, const DeviceContext& dev_ctx, const platform::Place& place) { for (size_t i = 0; i < var->size(); i++) { if (data_type[i] == framework::proto::VarType::FP32) { dev_ctx.template Alloc((*var)[i], (*var)[i]->numel() * sizeof(float)); } else if (data_type[i] == framework::proto::VarType::FP16) { dev_ctx.template Alloc( (*var)[i], (*var)[i]->numel() * sizeof(paddle::platform::float16)); } else if (data_type[i] == framework::proto::VarType::FP64) { dev_ctx.template Alloc((*var)[i], (*var)[i]->numel() * sizeof(double)); } } } template class FusionGroupKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto ins = ctx.MultiInput("Inputs"); auto outs = ctx.MultiOutput("Outs"); int type = ctx.Attr("type"); const auto& outs_dtype = ctx.Attr>("outs_dtype"); const auto& inputs_dtype = ctx.Attr>("inputs_dtype"); size_t num_ins = ins.size(); size_t num_outs = outs.size(); auto place = ctx.GetPlace(); auto& dev_ctx = ctx.template device_context(); MutableMultiTypeData(&outs, outs_dtype, dev_ctx, place); std::string func_name = ctx.Attr("func_name"); platform::DeviceCode* dev_code = platform::DeviceCodePool::Instance().Get(place, func_name); VLOG(3) << "func_name: " << func_name; if (type == 0) { size_t n = ins[0]->numel(); std::vector args; args.push_back(&n); std::vector ptrs(num_ins + num_outs); for (size_t i = 0; i < num_ins; ++i) { if (inputs_dtype[i] == framework::proto::VarType::FP16) { ptrs[i] = ins[i]->data(); } else if (inputs_dtype[i] == framework::proto::VarType::FP32) { ptrs[i] = ins[i]->data(); } else if (inputs_dtype[i] == framework::proto::VarType::FP64) { ptrs[i] = ins[i]->data(); } args.push_back(&ptrs[i]); } for (size_t j = 0; j < num_outs; ++j) { if (outs_dtype[j] == framework::proto::VarType::FP16) { ptrs[num_ins + j] = outs[j]->data(); } else if (outs_dtype[j] == framework::proto::VarType::FP32) { ptrs[num_ins + j] = outs[j]->data(); } else if (outs_dtype[j] == framework::proto::VarType::FP64) { ptrs[num_ins + j] = outs[j]->data(); } args.push_back(&ptrs[num_ins + j]); } dev_code->Launch(n, &args); } } }; } // namespace operators } // namespace paddle