reshape_kernel.h 2.5 KB
Newer Older
E
eclipsess 已提交
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. */

L
liuruilong 已提交
15 16 17
#ifdef RESHAPE_OP

#pragma once
E
eclipsess 已提交
18

L
liuruilong 已提交
19
#include <vector>
E
eclipsess 已提交
20 21
#include "framework/operator.h"

L
liuruilong 已提交
22
#include "operators/op_param.h"
E
eclipsess 已提交
23 24

namespace paddle_mobile {
E
eclipsess 已提交
25
namespace operators {
E
eclipsess 已提交
26

E
eclipsess 已提交
27 28 29 30 31 32 33
inline framework::DDim ValidateShape(const std::vector<int> shape,
                                     const framework::DDim& in_dims) {
  const int64_t in_size = framework::product(in_dims);
  // only one dimension can be set to -1, whose size will be automatically
  // infered.
  const int64_t unk_dim_val = -1;
  const int64_t copy_dim_val = 0;
E
eclipsess 已提交
34

E
eclipsess 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
  std::vector<int64_t> output_shape(shape.size(), 0);
  int64_t capacity = 1;
  int unk_dim_idx = -1;
  for (size_t i = 0; i < shape.size(); ++i) {
    if (shape[i] == unk_dim_val) {
      PADDLE_MOBILE_ENFORCE(
          unk_dim_idx == -1,
          "Only one input dimension of Attr(shape) can be unknown.");
      unk_dim_idx = i;
    } else if (shape[i] == copy_dim_val) {
      PADDLE_MOBILE_ENFORCE(
          static_cast<int>(i) < in_dims.size(),
          "The index of dimension to copy from input shape must be less "
          "than the size of input shape.");
    } else {
      PADDLE_MOBILE_ENFORCE(
          shape[i] > 0,
          "Each input dimension of Attr(shape) must not be negtive except "
          "one unknown dimension.");
    }
E
eclipsess 已提交
55

E
eclipsess 已提交
56 57 58
    capacity *= (shape[i] ? shape[i] : in_dims[i]);
    output_shape[i] = (shape[i] ? static_cast<int64_t>(shape[i]) : in_dims[i]);
  }
E
eclipsess 已提交
59

E
eclipsess 已提交
60 61 62 63 64 65 66 67 68
  if (unk_dim_idx != -1) {
    output_shape[unk_dim_idx] = -in_size / capacity;
    PADDLE_MOBILE_ENFORCE(output_shape[unk_dim_idx] * capacity == -in_size,
                          "Invalid shape is given.");
  } else {
    PADDLE_MOBILE_ENFORCE(capacity == in_size, "Invalid shape is given.");
  }
  return framework::make_ddim(output_shape);
}
E
eclipsess 已提交
69

E
eclipsess 已提交
70 71 72 73 74 75
template <typename DeviceType, typename T>
class ReshapeKernel : public framework::OpKernelBase<DeviceType, ReshapeParam> {
 public:
  void Compute(const ReshapeParam& param) const;
};
}  // namespace operators
E
eclipsess 已提交
76
}  // namespace paddle_mobile
L
liuruilong 已提交
77 78

#endif