/* 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/platform/ipu/common.h" #include "paddle/fluid/platform/ipu/ipu_optimizer.h" #include "paddle/fluid/platform/ipu/ipu_strategy.h" #include "paddle/fluid/platform/ipu/ipu_utils.h" namespace paddle { namespace platform { namespace ipu { class Executor { public: Executor(); ~Executor(); void Prepare(const std::string &proto, const std::map &tensors, const std::vector &outputs, std::shared_ptr device); void Run(const std::vector &inputs_id, const std::vector &inputs, const std::vector &outputs_id, const std::vector &outputs, const framework::ExecutionContext &ctx); // Optimizer void SetOptimizerType(const std::string &type); void SetOptimizerAttr(const std::string &attr, float value); void SetLoss(const std::string &loss); void SetLR(float lr_rate); void SetLRVarName(const std::string &name); void SetWeights(const std::vector &info); void SetWeightsIO(); void WeightsFromPaddle(); void WeightsToPaddle(); // Scope void SetScope(const framework::Scope *scope) { scope_ = scope; } // Strategy void SetIpuStrategy(const IpuStrategy &strategy); private: float GetLRFromScope(); public: OptmizerMetaInfo opt_info; std::unique_ptr session_; private: const framework::Scope *scope_ = nullptr; const IpuStrategy *ipu_strategy_ = nullptr; popart::WeightsIO weights_io_; std::vector weights_; }; } // namespace ipu } // namespace platform } // namespace paddle