/* 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/platform/device/npu/enforce_npu.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: NpuOpRunner(); explicit NpuOpRunner(const std::string &op_type); NpuOpRunner(const std::string &op_type, const std::vector &inputs = {}, const std::vector &outputs = {}, const NPUAttributeMap &attrs = {}); // NOTE(zhiqiu): why forbid copy and operator= ? // Since we will free the tensor_descs and data_buffers in the ~NpuOpRunner, // if shallow copy is performed on tensor_descs and data_buffers, it may // result // in use-after-free bugs. NpuOpRunner(const NpuOpRunner &runner) = delete; NpuOpRunner &operator=(const NpuOpRunner &runner) = delete; ~NpuOpRunner(); const std::string &Type(); NpuOpRunner &SetType(const std::string &name); NpuOpRunner &AddAttr(const std::string &name, const NPUAttribute &attr); // NOTE(qili93): need to add indivisual api for aclopSetAttrDataType // as typeid(aclDataType) and typeid(framework::proto::VarType::Type) // always go to attr.type() == typeid(int) to call aclopSetAttrInt NpuOpRunner &AddAttrDataType(const std::string &name, const NPUAttribute &attr); NpuOpRunner &AddAttrs(const NPUAttributeMap &attrs); NpuOpRunner &AddInput(const Tensor &tensor); // NOTE(zhiqiu): CANN-5.0.2 support input tensors on host. // Specifically, the tensor of shape, tensor of dims, etc, which are are small // vector/list. NpuOpRunner &AddInput(const Tensor &tensor, aclMemType mem_type); NpuOpRunner &AddInput(std::vector &&dims); NpuOpRunner &AddInput(std::vector &&dims); NpuOpRunner &AddInput(std::vector &&values); NpuOpRunner &AddInput(std::vector &&values); 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) const; static void TypeAdapter( const std::vector &inputs, const std::vector &outputs, const NPUAttributeMap &attrs, const platform::NPUDeviceContext &dev_ctx, std::function &, const std::vector &, const NPUAttributeMap &, const platform::NPUDeviceContext &)> op_runner, const std::vector &input_type, const std::vector &output_type); private: aclTensorDesc *CreateTensorDesc(Tensor tensor, aclMemType mem_type = ACL_MEMTYPE_DEVICE); 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_; std::vector host_tensors_; 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