types.h 3.3 KB
Newer Older
L
liuruilong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Copyright (c) 2018 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. */

D
dolphin8 已提交
15
#pragma once
朔-望's avatar
朔-望 已提交
16

L
liuruilong 已提交
17 18
#include <string>
#include <unordered_map>
19
#include <utility>
D
dolphin8 已提交
20
#include <vector>
L
liuruilong 已提交
21

朔-望's avatar
朔-望 已提交
22
namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
23
enum class Precision : int { FP32 = 0 };
朔-望's avatar
朔-望 已提交
24

L
liuruilong 已提交
25
template <Precision p>
L
liuruilong 已提交
26
struct PrecisionTrait {
L
liuruilong 已提交
27 28 29 30
  typedef void ptype;
};

template <>
L
liuruilong 已提交
31
struct PrecisionTrait<Precision::FP32> {
L
liuruilong 已提交
32 33 34
  typedef float ptype;
};

朔-望's avatar
朔-望 已提交
35 36
//! device type
enum DeviceTypeEnum { kINVALID = -1, kCPU = 0, kFPGA = 1, kGPU_MALI = 2 };
朔-望's avatar
朔-望 已提交
37

朔-望's avatar
朔-望 已提交
38 39
template <DeviceTypeEnum T>
struct DeviceType {};
朔-望's avatar
朔-望 已提交
40

朔-望's avatar
朔-望 已提交
41 42 43
typedef DeviceType<kCPU> CPU;
typedef DeviceType<kFPGA> FPGA;
typedef DeviceType<kGPU_MALI> GPU_MALI;
朔-望's avatar
朔-望 已提交
44

朔-望's avatar
朔-望 已提交
45 46
//! data type
enum DataType {
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
  PM_INVALID = -1,
  PM_HALF = 0,
  PM_FLOAT = 1,
  PM_DOUBLE = 2,
  PM_INT8 = 3,
  PM_INT16 = 4,
  PM_INT32 = 5,
  PM_INT64 = 6,
  PM_UINT8 = 7,
  PM_UINT16 = 8,
  PM_UINT32 = 9,
  PM_STRING = 10,
  PM_BOOL = 11,
  PM_SHAPE = 12,
  PM_TENSOR = 13
朔-望's avatar
朔-望 已提交
62 63 64
};
//!
enum PMStatus {
65 66 67 68 69 70 71 72 73
  PMSuccess = 0xFF,        /*!< No errors */
  PMNotInitialized = 0x01, /*!< Data not initialized. */
  PMInvalidValue = 0x02,   /*!< Incorrect variable value. */
  PMMemAllocFailed = 0x03, /*!< Memory allocation error. */
  PMUnKownError = 0x04,    /*!< Unknown error. */
  PMOutOfAuthority = 0x05, /*!< Try to modified data not your own*/
  PMOutOfMem = 0x06,       /*!< OOM error*/
  PMUnImplError = 0x07,    /*!< Unimplement error. */
  PMWrongDevice = 0x08     /*!< un-correct device. */
朔-望's avatar
朔-望 已提交
74
};
L
liuruilong 已提交
75

L
liuruilong 已提交
76 77 78 79 80 81 82
extern const std::string G_OP_TYPE_CONV;
extern const std::string G_OP_TYPE_BATCHNORM;
extern const std::string G_OP_TYPE_BOX_CODER;
extern const std::string G_OP_TYPE_CONCAT;
extern const std::string G_OP_TYPE_ELEMENTWISE_ADD;
extern const std::string G_OP_TYPE_FUSION_CONV_ADD_RELU;
extern const std::string G_OP_TYPE_FC;
E
eclipsess 已提交
83 84
extern const std::string G_OP_TYPE_FUSION_CONV_ADD;
extern const std::string G_OP_TYPE_FUSION_CONV_ADD_BN_RELU;
E
eclipsess 已提交
85
extern const std::string G_OP_TYPE_FUSION_DWCONV_BN_RELU;
86
extern const std::string G_OP_TYPE_FUSION_CONV_BN_RELU;
E
eclipsess 已提交
87

L
liuruilong 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101
extern const std::string G_OP_TYPE_LRN;
extern const std::string G_OP_TYPE_MUL;
extern const std::string G_OP_TYPE_MULTICLASS_NMS;
extern const std::string G_OP_TYPE_POOL2D;
extern const std::string G_OP_TYPE_PRIOR_BOX;
extern const std::string G_OP_TYPE_RELU;
extern const std::string G_OP_TYPE_RESHAPE;
extern const std::string G_OP_TYPE_SIGMOID;
extern const std::string G_OP_TYPE_SOFTMAX;
extern const std::string G_OP_TYPE_TRANSPOSE;
extern const std::string G_OP_TYPE_SPLIT;
extern const std::string G_OP_TYPE_FEED;
extern const std::string G_OP_TYPE_FETCH;
extern const std::string G_OP_TYPE_DEPTHWISE_CONV;
102
extern const std::string G_OP_TYPE_IM2SEQUENCE;
Y
Yao,kun 已提交
103
extern const std::string G_OP_TYPE_DROPOUT;
L
liuruilong 已提交
104

L
liuruilong 已提交
105
extern std::unordered_map<
L
liuruilong 已提交
106
    std::string, std::pair<std::vector<std::string>, std::vector<std::string>>>
L
liuruilong 已提交
107 108
    op_input_output_key;

朔-望's avatar
朔-望 已提交
109
}  // namespace paddle_mobile