/* 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. */ #pragma once #include #include #include #include "paddle/fluid/framework/operator.h" #include "paddle/fluid/framework/scope.h" #include "paddle/fluid/framework/tensor.h" #include "paddle/fluid/platform/device/ipu/ipu_compiler.h" #include "paddle/fluid/platform/device/ipu/ipu_device.h" #include "paddle/fluid/platform/device/ipu/ipu_executor.h" #include "paddle/fluid/platform/device/ipu/ipu_strategy.h" #include "paddle/fluid/platform/device/ipu/ipu_utils.h" #include "paddle/fluid/platform/enforce.h" #include "paddle/fluid/platform/timer.h" namespace paddle { namespace platform { namespace ipu { // IpuBackend is the center of paddle-ipu, its function include: // 1. Compile paddle model to popart model // 2. Run popart model, inference or training // 3. Request and release device // 4. Other helper function class IpuBackend { public: static IpuBackend *GetInstance(); public: IpuBackend(); ~IpuBackend(); // what compile does include(call compiler_): // 1. map paddle-op -> poart op // 2. construct popart onnx compute graph void Compile(Graph *graph, const std::vector &feed_list, const std::vector &fetch_list); // what run does include: // 1. construct forward onnx graph // 2. graph-level optimization // 3. autodiff void Run(const std::vector &inputs, const std::vector &outputs, const framework::ExecutionContext &ctx); // Sync weights from IPU while training void WeightsToHost(); // detach IPU manually void Detach(); // reset manually // call it before destruct works void Reset(); void SetScope(const Scope &scope); const Scope *GetScope() { return scope_; } void SetIpuStrategy(const IpuStrategy &strategy); const IpuStrategy *GetIpuStrategy() { return ipu_strategy_; } // save compiled model to onnx void SaveModelProto(const std::string &path); private: // not own const Scope *scope_ = nullptr; const IpuStrategy *ipu_strategy_ = nullptr; // own std::unique_ptr compiler_; std::unique_ptr executor_; std::unique_ptr timer_; bool is_compiled_ = false; DISABLE_COPY_AND_ASSIGN(IpuBackend); }; } // namespace ipu } // namespace platform } // namespace paddle