You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.9 KiB
59 lines
1.9 KiB
5 years ago
|
/* Copyright (c) 2019 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 "paddle/fluid/framework/eigen.h"
|
||
|
#include "paddle/fluid/framework/op_registry.h"
|
||
|
|
||
|
namespace paddle {
|
||
|
namespace operators {
|
||
|
|
||
|
using Tensor = framework::Tensor;
|
||
|
|
||
|
template <typename T>
|
||
|
class GatherTreeOpKernel : public framework::OpKernel<T> {
|
||
|
public:
|
||
|
void Compute(const framework::ExecutionContext &ctx) const override {
|
||
|
auto *ids = ctx.Input<Tensor>("Ids");
|
||
|
auto *parents = ctx.Input<Tensor>("Parents");
|
||
|
auto *out = ctx.Output<Tensor>("Out");
|
||
|
|
||
|
const auto *ids_data = ids->data<T>();
|
||
|
const auto *parents_data = parents->data<T>();
|
||
|
auto *out_data = out->mutable_data<T>(ctx.GetPlace());
|
||
|
|
||
|
auto &ids_dims = ids->dims();
|
||
|
auto max_length = ids_dims[0];
|
||
|
auto batch_size = ids_dims[1];
|
||
|
auto beam_size = ids_dims[2];
|
||
|
|
||
|
for (int batch = 0; batch < batch_size; batch++) {
|
||
|
for (int beam = 0; beam < beam_size; beam++) {
|
||
|
auto idx = (max_length - 1) * batch_size * beam_size +
|
||
|
batch * beam_size + beam;
|
||
|
out_data[idx] = ids_data[idx];
|
||
|
auto parent = parents_data[idx];
|
||
|
for (int step = max_length - 2; step >= 0; step--) {
|
||
|
idx = step * batch_size * beam_size + batch * beam_size;
|
||
|
out_data[idx + beam] = ids_data[idx + parent];
|
||
|
parent = parents_data[idx + parent];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
} // namespace operators
|
||
|
} // namespace paddle
|