/* 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. */ /* * This file contains the implementation of inference API with Anakin engine * embeded, this API can only support Anakin models. */ #pragma once #include #include #include "framework/core/net/net.h" #include "framework/graph/graph.h" #include "paddle/fluid/inference/api/paddle_anakin_config.h" #include "saber/core/shape.h" #include "saber/saber_types.h" namespace paddle { using contrib::AnakinConfig; using anakin::Precision; using anakin::OpRunType; template class PaddleInferenceAnakinPredictor : public PaddlePredictor { public: PaddleInferenceAnakinPredictor() = default; explicit PaddleInferenceAnakinPredictor(const AnakinConfig& config) : config_(config) { this->InitPredictor(); } // NOTE Unlike the native engine, the buffers of anakin engine's output_data // should be allocated first. bool Run(const std::vector& inputs, std::vector* output_data, int batch_size = -1) override; std::unique_ptr Clone() override; virtual bool ResetConfig(const AnakinConfig& config); virtual anakin::Net& ResetExecuter( std::shared_ptr> graph_p); void InitPredictor(); ~PaddleInferenceAnakinPredictor() override; static std::mutex mutex_; AnakinConfig config_; std::shared_ptr> ctx_p_; std::shared_ptr> graph_p_; anakin::Net* executor_p_{nullptr}; void InitEnv(); void InitGraph(); virtual void OptimizeGraph(); virtual void InitNet(); virtual void SetContext(); virtual void Predict(); private: bool RunImpl(const std::vector& inputs, std::vector* output_data); static std::once_flag init_anakin_; }; #ifdef ANAKIN_MLU_PLACE template class PaddleInferenceAnakinMLUPredictor final : public PaddleInferenceAnakinPredictor { public: explicit PaddleInferenceAnakinMLUPredictor(const AnakinConfig& config) { this->ResetConfig(config); this->InitPredictor(); } void SetContext() override; void OptimizeGraph() override; void InitNet() override; void Predict() override; }; #endif } // namespace paddle