data_layout_transform.h 3.7 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 {

39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
struct CastDataLayout {
  CastDataLayout(const platform::DeviceContext* ctx,
                 const std::vector<int>& axis, const framework::Tensor& in,
                 framework::Tensor* out)
      : in_(in), out_(out), ctx_(ctx), axis_(axis) {}

  const framework::Tensor in_;
  framework::Tensor* out_;
  const platform::DeviceContext* ctx_;
  const std::vector<int> axis_;

  template <typename T>
  void apply();
};

M
mozga-intel 已提交
54
#ifdef PADDLE_WITH_MKLDNN
55
using MKLDNNDataType = dnnl::memory::data_type;
M
mozga-intel 已提交
56

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

70
inline DataLayout ToPaddleLayout(const MKLDNNMemoryFormat& format) {
M
mozga-intel 已提交
71
  switch (format) {
72
    case MKLDNNMemoryFormat::nhwc:
M
mozga-intel 已提交
73
      return DataLayout::kNHWC;
74
    case MKLDNNMemoryFormat::nchw:
M
mozga-intel 已提交
75 76
      return DataLayout::kNCHW;
    default:
77 78
      PADDLE_THROW(platform::errors::InvalidArgument(
          "Fail to convert MKLDNN format to paddle layout."));
M
mozga-intel 已提交
79 80 81
  }
}

Y
Yu Yang 已提交
82 83
inline MKLDNNDataType ToMKLDNNDataType(proto::VarType::Type type) {
  static std::unordered_map<int, MKLDNNDataType> dict{
84 85 86
      {DataTypeTrait<float>::DataType(), MKLDNNDataType::f32},
      {DataTypeTrait<int8_t>::DataType(), MKLDNNDataType::s8},
      {DataTypeTrait<uint8_t>::DataType(), MKLDNNDataType::u8},
87 88
      {DataTypeTrait<int32_t>::DataType(), MKLDNNDataType::s32},
      {DataTypeTrait<platform::bfloat16>::DataType(), MKLDNNDataType::bf16}};
Y
Yu Yang 已提交
89
  auto iter = dict.find(static_cast<int>(type));
M
mozga-intel 已提交
90
  if (iter != dict.end()) return iter->second;
A
Adam 已提交
91
  return MKLDNNDataType::undef;
M
mozga-intel 已提交
92
}
93

94 95
void innerTransDataLayoutFromMKLDNN(DataLayout in_layout, DataLayout out_layout,
                                    const Tensor& in, Tensor* out,
96 97
                                    platform::Place place,
                                    bool always_copy = false);
M
mozga-intel 已提交
98 99 100 101

void TransDataLayoutFromMKLDNN(const OpKernelType& kernel_type_for_var,
                               const OpKernelType& expected_kernel_type,
                               const Tensor& in, Tensor* out);
102 103 104

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

105
#endif
M
mozga-intel 已提交
106

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

109 110 111
void TransDataLayout(const OpKernelType& kernel_type_for_var,
                     const OpKernelType& expected_kernel_type, const Tensor& in,
                     Tensor* out);
112 113 114

}  // namespace framework
}  // namespace paddle