/* Copyright (c) 2021 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. */ #ifdef PADDLE_WITH_ASCEND_CL #pragma once #include #include #include #include #include "acl/acl.h" #include "paddle/fluid/framework/tensor_util.h" #include "paddle/fluid/operators/npu_op_runner.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; using DataLayout = framework::DataLayout; using NPUAttribute = framework::NPUAttribute; using NPUAttributeMap = framework::NPUAttributeMap; using DeviceContextPool = platform::DeviceContextPool; class NpuOpRunner { public: explicit NpuOpRunner(std::string op_type); explicit NpuOpRunner(std::string op_type, const std::vector &inputs = {}, const std::vector &outputs = {}, const NPUAttributeMap &attrs = {}); ~NpuOpRunner(); const std::string &Type(); NpuOpRunner &AddAttr(const std::string &name, const NPUAttribute &attr); NpuOpRunner &AddAttrs(const NPUAttributeMap &attrs); NpuOpRunner &AddInput(const Tensor &tensor); NpuOpRunner &AddOutput(const Tensor &tensor); NpuOpRunner &AddInputs(const std::vector &tensors); NpuOpRunner &AddInputNames(const std::vector &names); NpuOpRunner &AddOutputs(const std::vector &tensors); aclTensorDesc *GetInputDesc(size_t index); aclTensorDesc *GetOutputDesc(size_t index); std::vector &GetInputDescs(); std::vector &GetOutputDescs(); std::vector &GetInputBuffers(); std::vector &GetOutputBuffers(); void Run(aclrtStream stream = nullptr); private: aclTensorDesc *CreateTensorDesc(Tensor tensor); aclDataBuffer *CreateDataBuffer(Tensor tensor); private: std::string op_type_; std::vector input_buffers_; std::vector output_buffers_; std::vector input_descs_; std::vector output_descs_; aclopAttr *attr_{nullptr}; }; aclDataType ConvertToNpuDtype(framework::proto::VarType::Type dtype); aclrtStream GetCurrentNPUStream(int device_id = -1); template void FillNpuTensorWithConstant(Tensor *tensor, T val) { PADDLE_ENFORCE_EQ( tensor->IsInitialized(), true, platform::errors::InvalidArgument("The tensor should be initialized.")); PADDLE_ENFORCE_EQ( platform::is_npu_place(tensor->place()), true, platform::errors::InvalidArgument("The tensor should be on NPUPlace.")); int numel = tensor->numel(); if (numel == 1) { Tensor npu_pinned_tensor(tensor->type()); platform::NPUPinnedPlace npu_pinned_place; auto npu_pinned_ptr = npu_pinned_tensor.mutable_data({1}, npu_pinned_place); *npu_pinned_ptr = val; memory::Copy(BOOST_GET_CONST(platform::NPUPlace, tensor->place()), tensor->data(), npu_pinned_place, npu_pinned_ptr, sizeof(T), GetCurrentNPUStream()); auto npu_pinned_allocator = static_cast( paddle::memory::allocation::AllocatorFacade::Instance() .GetAllocator(npu_pinned_place) .get()); paddle::memory::allocation::Allocation *allocation = npu_pinned_tensor.Holder().get(); npu_pinned_allocator->RecordEvent(allocation, GetCurrentNPUStream()); } else { std::vector vec(numel, static_cast(val)); auto device_id = platform::GetCurrentNPUDeviceId(); platform::DeviceContextPool &pool = platform::DeviceContextPool::Instance(); auto *dev_ctx = static_cast( pool.Get(platform::NPUPlace(device_id))); paddle::framework::TensorFromVector(vec, *dev_ctx, tensor); } } } // namespace operators } // namespace paddle #endif