subgraph_compute.h 2.7 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 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.

#pragma once

17
#include <map>
Y
Yan Chunwei 已提交
18
#include <memory>
19
#include <string>
Y
Yan Chunwei 已提交
20
#include <vector>
21
#include "HiAiModelManagerService.h"
Y
Yan Chunwei 已提交
22
#include "lite/core/kernel.h"
23 24
#include "lite/kernels/npu/bridges/engine.h"
#include "lite/kernels/npu/bridges/registry.h"
Y
Yan Chunwei 已提交
25 26 27 28 29 30

namespace paddle {
namespace lite {
namespace kernels {
namespace npu {

31
class SubgraphEngine : public subgraph::Engine {
Y
Yan Chunwei 已提交
32
 public:
33 34
  SubgraphEngine(KernelContext *ctx,
                 int block_idx,
35 36 37 38 39
                 cpp::BlockDesc *block_desc,
                 const std::vector<std::string> &input_names,
                 const std::vector<std::string> &output_names,
                 Scope *scope)
      : subgraph::Engine(
40
            ctx, block_idx, block_desc, input_names, output_names, scope) {}
41

42 43 44 45 46 47 48 49 50 51
  struct device_program_t {
    explicit device_program_t(std::shared_ptr<hiai::AiModelMngerClient> _client)
        : client(_client) {}
    std::shared_ptr<hiai::AiModelMngerClient> client{nullptr};
    std::vector<DDim> origin_idims{};
    std::vector<DDim> origin_odims{};
    std::vector<hiai::TensorDimension> device_idims{};
    std::vector<hiai::TensorDimension> device_odims{};
  };

52 53
  int Build() override;

54 55 56
 protected:
  int BuildDeviceProgram() override;
  int LaunchDeviceProgram() override;
57 58

  void InitDeviceTensor() override;
59
  bool InputShapeChanged() override;
60

61 62 63 64 65 66 67 68
  std::string model_name_{"model.om"};
  std::vector<std::vector<int64_t>> inputs_shape_{};
  std::map<std::vector<std::vector<int64_t>>, std::shared_ptr<device_program_t>>
      device_program_map_{};
  std::vector<std::string> device_inames_{};
  std::vector<std::string> device_onames_{};
  std::vector<std::shared_ptr<hiai::AiTensor>> device_itensors_{};
  std::vector<std::shared_ptr<hiai::AiTensor>> device_otensors_{};
69 70
};

71
class SubgraphCompute : public KernelLite<TARGET(kNPU), PRECISION(kAny)> {
72 73
 public:
  using param_t = operators::SubgraphParam;
Y
Yan Chunwei 已提交
74 75 76 77 78

  void PrepareForRun() override;

  void Run() override;

79
  virtual ~SubgraphCompute() = default;
Y
Yan Chunwei 已提交
80 81

 private:
82
  std::unique_ptr<SubgraphEngine> engine_;
Y
Yan Chunwei 已提交
83 84 85 86 87 88
};

}  // namespace npu
}  // namespace kernels
}  // namespace lite
}  // namespace paddle