reshape_kernel.h 3.1 KB
Newer Older
E
eclipsess 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
/* 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. */

#include <vector>

#include "framework/operator.h"
#include "operators/op_param.h"

#pragma once;

namespace paddle_mobile {
    namespace operators {


        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;

            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.");
                }

                capacity *= (shape[i] ? shape[i] : in_dims[i]);
                output_shape[i] =
                        (shape[i] ? static_cast<int64_t>(shape[i]) : in_dims[i]);
            }

            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);
        }

        template <typename DeviceType, typename T>
        class ReshapeKernel
                : public framework::OpKernelBase<DeviceType, ReshapeParam> {
        public:
            void Compute(const ReshapeParam& param) const;
        };
    }  // namespace operators
}  // namespace paddle_mobile