paddle_anakin_config.h 1.3 KB
Newer Older
1
// Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15
//
// 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

16
#include <cassert>
17
#include <map>
18 19 20
#include <memory>
#include <string>
#include <vector>
21

22 23 24 25 26 27
#include "paddle_api.h"  // NOLINT

namespace paddle {
namespace contrib {
// Configurations for Anakin engine.
struct AnakinConfig : public PaddlePredictor::Config {
28 29
  enum TargetType { NVGPU = 0, X86, MLU };
  int device_id{0};
30
  std::string model_file;
31 32 33 34 35 36
  std::map<std::string, std::vector<int>> init_inputs_shape;
  int init_batch_size{-1};
  bool re_allocable{true};
  int max_stream{4};
  int data_stream_id{0};
  int compute_stream_id{0};
37
  TargetType target_type;
38 39 40 41 42 43
#ifdef ANAKIN_MLU_PLACE
  int model_parallel{8};
  int data_parallel{1};
  bool op_fuse{false};
  bool sparse{false};
#endif
44
};
45

46
}  // namespace contrib
47
}  // namespace paddle