linspace_op.h 2.5 KB
Newer Older
Z
zhoukunsheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2016 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. */

#pragma once
#include <functional>
17
#include "paddle/fluid/framework/data_type_transform.h"
Z
zhoukunsheng 已提交
18 19 20 21 22 23
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/math/math_function.h"

namespace paddle {
namespace operators {

24 25
using Tensor = framework::Tensor;

Z
zhoukunsheng 已提交
26 27 28 29
template <typename T>
class CPULinspaceKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& context) const override {
30 31
    auto* pre_start = context.Input<framework::Tensor>("Start");
    auto* pre_stop = context.Input<framework::Tensor>("Stop");
Z
zhoukunsheng 已提交
32 33
    int32_t num = context.Input<framework::Tensor>("Num")->data<int32_t>()[0];
    auto* out = context.Output<framework::Tensor>("Out");
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    auto dtype = static_cast<framework::proto::VarType::Type>(
        context.Attr<int>("dtype"));

    Tensor start_t;
    Tensor stop_t;
    auto start_dtype =
        framework::OpKernelType(pre_start->type(), context.GetPlace());
    auto stop_dtype =
        framework::OpKernelType(pre_stop->type(), context.GetPlace());
    auto out_dtype = framework::OpKernelType(dtype, context.GetPlace());
    framework::TransDataType(start_dtype, out_dtype, *pre_start, &start_t);
    framework::TransDataType(stop_dtype, out_dtype, *pre_stop, &stop_t);

    T start = start_t.data<T>()[0];
    T stop = stop_t.data<T>()[0];
49 50 51 52
    PADDLE_ENFORCE_GT(num, 0, platform::errors::InvalidArgument(
                                  "The num of linspace op should be larger "
                                  "than 0, but received num is %d",
                                  num));
Z
zhoukunsheng 已提交
53 54 55 56 57 58

    out->Resize(framework::make_ddim({num}));

    T* out_data = out->mutable_data<T>(context.GetPlace());

    if (num > 1) {
59
      double step = (static_cast<double>(stop - start)) / (num - 1);
Z
zhoukunsheng 已提交
60
      for (int i = 0; i < num; ++i) {
61
        out_data[i] = static_cast<T>(start + step * i);
Z
zhoukunsheng 已提交
62 63
      }
    } else {
64
      out_data[0] = static_cast<T>(start);
Z
zhoukunsheng 已提交
65 66 67 68 69 70
    }
  }
};

}  // namespace operators
}  // namespace paddle