data_layout.h 1.6 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. */

朔-望's avatar
朔-望 已提交
15 16 17 18 19 20
#pragma once

#include <cctype>
#include <string>

namespace paddle_mobile {
朔-望's avatar
朔-望 已提交
21
namespace framework {
朔-望's avatar
朔-望 已提交
22

朔-望's avatar
朔-望 已提交
23
enum class DataLayout {
24 25 26
  kNHWC = 0,
  kNCHW = 1,
  kAnyLayout = 2,
朔-望's avatar
朔-望 已提交
27
};
朔-望's avatar
朔-望 已提交
28

朔-望's avatar
朔-望 已提交
29
inline DataLayout StringToDataLayout(const std::string &str) {
30 31 32 33
  std::string s(str);
  for (size_t i = 0; i < s.size(); ++i) {
    s[i] = toupper(s[i]);
  }
朔-望's avatar
朔-望 已提交
34

35 36 37 38 39 40 41
  if (s == "NHWC") {
    return DataLayout::kNHWC;
  } else if (s == "NCHW") {
    return DataLayout::kNCHW;
  } else if (s == "ANYLAYOUT") {
    return DataLayout::kAnyLayout;
  } else {
W
wangliu 已提交
42
    PADDLE_MOBILE_THROW_EXCEPTION("Unknown storage order string: %s", s.c_str())
43
    exit(0);
44
  }
朔-望's avatar
朔-望 已提交
45
}
朔-望's avatar
朔-望 已提交
46

朔-望's avatar
朔-望 已提交
47
inline std::string DataLayoutToString(const DataLayout &data_layout) {
48
  switch (data_layout) {
朔-望's avatar
朔-望 已提交
49 50 51 52 53 54 55
    case DataLayout::kNHWC:
      return "NHWC";
    case DataLayout::kNCHW:
      return "NCHW";
    case DataLayout::kAnyLayout:
      return "ANY_LAYOUT";
    default:
56 57
      PADDLE_MOBILE_THROW_EXCEPTION("Unknown storage order string ")
      exit(0);
朔-望's avatar
朔-望 已提交
58
      break;
59
  }
朔-望's avatar
朔-望 已提交
60
}
朔-望's avatar
朔-望 已提交
61

朔-望's avatar
朔-望 已提交
62 63
}  // namespace framework
}  // namespace paddle_mobile