transpose_kernel.cpp 2.4 KB
Newer Older
E
eclipsess 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* 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. */
L
liuruilong 已提交
14
#ifdef TRANSPOSE_OP
E
eclipsess 已提交
15 16 17 18 19

#include "operators/kernel/transpose_kernel.h"
namespace paddle_mobile {
namespace operators {

D
dolphin8 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
// vector<int> pos;
// template <typename T>
// void TransposeFunc(const int numel, const T* input, const vector<int> axis,
//                    const vector<int> old_strides, const vector<int>
//                    new_strides, T* output) {
//   for (int i = 0; i < numel; ++i) {
//     int old_idx = 0;
//     int idx = i;
//     for (int j = 0; j < axis.size(); ++j) {
//       int order = axis[j];
//       old_idx += (idx / new_strides[j]) * old_strides[order];
//       idx %= new_strides[j];
//     }
//     output[i] = input[old_idx];
//   }
// }
E
eclipsess 已提交
36 37 38 39 40 41 42 43 44 45

template <>
void TransposeKernel<CPU, float>::Compute(const TransposeParam& param) const {
  const auto* input_x = param.InputX();
  const auto input_x_dims = input_x->dims();
  auto* out = param.Out();
  const auto axis = param.Axis();
  const auto* input_x_data = input_x->data<float>();
  auto* out_data = out->mutable_data<float>();

D
dolphin8 已提交
46 47 48
  size_t ndim = axis.size();
  std::vector<int> xdim(ndim);
  std::vector<int> xstride(ndim);
D
dolphin8 已提交
49
  std::vector<int> xout(ndim);
D
dolphin8 已提交
50 51 52 53 54 55 56
  for (int i = 0; i < ndim; i++) {
    int j = ndim - 1 - i;
    xdim[j] = input_x_dims[axis[i]];
    xstride[j] = 1;
    for (int k = axis[i] + 1; k < ndim; k++) {
      xstride[j] *= input_x_dims[k];
    }
D
dolphin8 已提交
57
    xout[j] = xstride[j] * xdim[j];
E
eclipsess 已提交
58 59
  }

D
dolphin8 已提交
60 61 62 63 64 65 66 67 68 69 70 71
  auto numel = input_x->numel();
  size_t pind = 0;
  std::vector<int> ind(ndim);
  for (int i = 0; i < numel; i++) {
    out_data[i] = input_x_data[pind];
    ind[0]++;
    pind += xstride[0];
    for (int j = 0; j < ndim - 1; j++) {
      if (ind[j] == xdim[j]) {
        ind[j + 1]++;
        ind[j] = 0;
        pind += xstride[j + 1];
D
dolphin8 已提交
72
        pind -= xout[j];
D
dolphin8 已提交
73 74 75
      } else {
        break;
      }
E
eclipsess 已提交
76 77 78 79 80 81
    }
  }
}

}  // namespace operators
}  // namespace paddle_mobile
L
liuruilong 已提交
82 83

#endif