data_layout_transform.h 3.3 KB
Newer Older
1
//   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2 3 4 5 6 7 8 9 10 11 12 13
//
// 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.
14 15 16

#pragma once

M
mozga-intel 已提交
17
#include <map>
18
#include <unordered_map>
19
#include <vector>
W
wanghuancoder 已提交
20

Y
Yi Wang 已提交
21 22 23
#include "paddle/fluid/framework/op_kernel_type.h"
#include "paddle/fluid/framework/tensor.h"
#include "paddle/fluid/framework/variable.h"
24

W
wanghuancoder 已提交
25 26 27 28 29 30 31
namespace paddle {
namespace framework {
class OpKernelType;
class Tensor;
}  // namespace framework
}  // namespace paddle

32 33 34 35
#ifdef PADDLE_WITH_MKLDNN
#include "paddle/fluid/platform/mkldnn_helper.h"
#endif

36 37 38
namespace paddle {
namespace framework {

M
mozga-intel 已提交
39 40 41
#ifdef PADDLE_WITH_MKLDNN
using MKLDNNDataType = mkldnn::memory::data_type;

42
inline MKLDNNMemoryFormat ToMKLDNNFormat(const DataLayout& layout) {
M
mozga-intel 已提交
43 44
  switch (layout) {
    case DataLayout::kNHWC:
45
      return MKLDNNMemoryFormat::nhwc;
M
mozga-intel 已提交
46
    case DataLayout::kNCHW:
47
      return MKLDNNMemoryFormat::nchw;
M
mozga-intel 已提交
48
    default:
49 50 51
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Fail to convert layout %s to MKLDNN format.",
          DataLayoutToString(layout)));
M
mozga-intel 已提交
52 53 54
  }
}

55
inline DataLayout ToPaddleLayout(const MKLDNNMemoryFormat& format) {
M
mozga-intel 已提交
56
  switch (format) {
57
    case MKLDNNMemoryFormat::nhwc:
M
mozga-intel 已提交
58
      return DataLayout::kNHWC;
59
    case MKLDNNMemoryFormat::nchw:
M
mozga-intel 已提交
60 61
      return DataLayout::kNCHW;
    default:
62 63
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Fail to convert MKLDNN format to paddle layout."));
M
mozga-intel 已提交
64 65 66
  }
}

Y
Yu Yang 已提交
67 68
inline MKLDNNDataType ToMKLDNNDataType(proto::VarType::Type type) {
  static std::unordered_map<int, MKLDNNDataType> dict{
69 70 71
      {DataTypeTrait<float>::DataType(), MKLDNNDataType::f32},
      {DataTypeTrait<int8_t>::DataType(), MKLDNNDataType::s8},
      {DataTypeTrait<uint8_t>::DataType(), MKLDNNDataType::u8},
72 73
      {DataTypeTrait<int32_t>::DataType(), MKLDNNDataType::s32},
      {DataTypeTrait<platform::bfloat16>::DataType(), MKLDNNDataType::bf16}};
Y
Yu Yang 已提交
74
  auto iter = dict.find(static_cast<int>(type));
M
mozga-intel 已提交
75
  if (iter != dict.end()) return iter->second;
A
Adam 已提交
76
  return MKLDNNDataType::undef;
M
mozga-intel 已提交
77
}
78

79 80
void innerTransDataLayoutFromMKLDNN(DataLayout in_layout, DataLayout out_layout,
                                    const Tensor& in, Tensor* out,
81 82
                                    platform::Place place,
                                    bool always_copy = false);
M
mozga-intel 已提交
83 84 85 86

void TransDataLayoutFromMKLDNN(const OpKernelType& kernel_type_for_var,
                               const OpKernelType& expected_kernel_type,
                               const Tensor& in, Tensor* out);
87 88 89

void* GetDataFromTensor(const Tensor& tensor, MKLDNNDataType type);

90
#endif
M
mozga-intel 已提交
91

92
std::vector<int> GetAxis(const DataLayout& from, const DataLayout& to);
93

94 95 96
void TransDataLayout(const OpKernelType& kernel_type_for_var,
                     const OpKernelType& expected_kernel_type, const Tensor& in,
                     Tensor* out);
97 98 99

}  // namespace framework
}  // namespace paddle