-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed the bug of tile op in large input and add xpu implemention.
test=develop
- Loading branch information
wangbingnan03
committed
Jun 8, 2022
1 parent
c9d1213
commit 4402f36
Showing
6 changed files
with
128 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// Copyright (c) 2020 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 "lite/kernels/xpu/tile_compute.h" | ||
#include <vector> | ||
#include "lite/backends/xpu/xpu_header_sitter.h" | ||
#include "lite/core/op_registry.h" | ||
|
||
namespace paddle { | ||
namespace lite { | ||
namespace kernels { | ||
namespace xpu { | ||
|
||
template <typename T, PrecisionType PType> | ||
void TileCompute<T, PType>::Run() { | ||
auto& param = this->template Param<param_t>(); | ||
auto& ctx = this->ctx_->template As<XPUContext>(); | ||
auto repeat_times = param.repeat_times; | ||
if (param.RepeatTimes) { | ||
auto repeat_times_size = param.RepeatTimes->data_size(); | ||
for (int64_t i = 0; i < repeat_times_size; i++) { | ||
repeat_times.push_back(param.RepeatTimes->template data<int>()[i]); | ||
} | ||
} else if (param.repeat_times_tensor.size() != 0) { | ||
for (int i = 0; i < param.repeat_times_tensor.size(); i++) { | ||
auto temp = param.repeat_times_tensor[i]; | ||
repeat_times.push_back(*(temp->template data<int>())); | ||
} | ||
} | ||
auto in_dims = param.X->dims(); | ||
auto vec_in_dims = in_dims.Vectorize(); | ||
// broadcast for vec_in_dims.size() equal to repeat_times.size() | ||
if (repeat_times.size() < vec_in_dims.size()) { | ||
int diff = vec_in_dims.size() - repeat_times.size(); | ||
repeat_times.insert(repeat_times.begin(), diff, 1); | ||
} else { | ||
int diff = repeat_times.size() - vec_in_dims.size(); | ||
vec_in_dims.insert(vec_in_dims.begin(), diff, 1); | ||
} | ||
|
||
std::vector<int> new_in_dims(vec_in_dims.begin(), vec_in_dims.end()); | ||
std::vector<int> out_dims(new_in_dims); | ||
for (size_t i = 0; i < repeat_times.size(); ++i) { | ||
out_dims[i] *= repeat_times[i]; | ||
} | ||
int r = xdnn::broadcast<T>(ctx.GetRawContext(), | ||
param.X->template data<T>(), | ||
param.Out->template mutable_data<T>(TARGET(kXPU)), | ||
new_in_dims, | ||
out_dims); | ||
|
||
CHECK_EQ(r, 0); | ||
} | ||
|
||
} // namespace xpu | ||
} // namespace kernels | ||
} // namespace lite | ||
} // namespace paddle | ||
|
||
using tile_float = | ||
paddle::lite::kernels::xpu::TileCompute<float, PRECISION(kFloat)>; | ||
REGISTER_LITE_KERNEL(tile, kXPU, kFloat, kNCHW, tile_float, def) | ||
.BindInput("X", {LiteType::GetTensorTy(TARGET(kXPU))}) | ||
.BindInput("RepeatTimes", | ||
{LiteType::GetTensorTy(TARGET(kHost), PRECISION(kInt32))}) | ||
.BindInput("repeat_times_tensor", | ||
{LiteType::GetTensorTy(TARGET(kHost), PRECISION(kInt32))}) | ||
.BindOutput("Out", {LiteType::GetTensorTy(TARGET(kXPU))}) | ||
.Finalize(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright (c) 2020 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 "lite/core/kernel.h" | ||
|
||
namespace paddle { | ||
namespace lite { | ||
namespace kernels { | ||
namespace xpu { | ||
|
||
template <typename T, PrecisionType PType> | ||
class TileCompute : public KernelLite<TARGET(kXPU), PType> { | ||
public: | ||
using param_t = operators::TileParam; | ||
|
||
virtual void Run(); | ||
|
||
virtual ~TileCompute() = default; | ||
}; | ||
|
||
} // namespace xpu | ||
} // namespace kernels | ||
} // namespace lite | ||
} // namespace paddle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters