-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
… support_expand_as_v2_npu
- Loading branch information
Showing
17 changed files
with
958 additions
and
213 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,59 @@ | ||
/* Copyright (c) 2021 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 "paddle/fluid/operators/eye_op.h" | ||
#include "paddle/fluid/operators/npu_op_runner.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
using Tensor = framework::Tensor; | ||
|
||
template <typename DeviceContext, typename T> | ||
class EyeNPUKernel : public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext& ctx) const override { | ||
auto num_rows = ctx.Attr<int64_t>("num_rows"); | ||
|
||
auto d_nums = ctx.Attr<int>("dtype"); | ||
auto dtype = | ||
ConvertToNpuDtype(static_cast<framework::proto::VarType::Type>(d_nums)); | ||
|
||
auto num_columns = ctx.Attr<int64_t>("num_columns"); | ||
if (num_columns == -1) num_columns = num_rows; | ||
|
||
framework::NPUAttributeMap attr_input = { | ||
{"num_rows", num_rows}, {"num_columns", num_columns}, {"dtype", dtype}}; | ||
|
||
auto* out = ctx.Output<framework::Tensor>("Out"); | ||
out->mutable_data<T>(ctx.GetPlace()); | ||
|
||
const auto& runner = NpuOpRunner("Eye", {}, {*out}, attr_input); | ||
auto stream = | ||
ctx.template device_context<paddle::platform::NPUDeviceContext>() | ||
.stream(); | ||
runner.Run(stream); | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
|
||
REGISTER_OP_NPU_KERNEL( | ||
eye, ops::EyeNPUKernel<paddle::platform::NPUDeviceContext, float>, | ||
ops::EyeNPUKernel<paddle::platform::NPUDeviceContext, int>, | ||
ops::EyeNPUKernel<paddle::platform::NPUDeviceContext, | ||
paddle::platform::float16>); |
101 changes: 101 additions & 0 deletions
101
paddle/fluid/operators/reduce_ops/reduce_prod_op_npu.cc
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,101 @@ | ||
/* Copyright (c) 2021 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 Licnse. */ | ||
|
||
#include "paddle/fluid/operators/reduce_ops/reduce_prod_op.h" | ||
#include "paddle/fluid/operators/npu_op_runner.h" | ||
|
||
namespace paddle { | ||
namespace operators { | ||
|
||
using Tensor = framework::Tensor; | ||
template <typename DeviceContext, typename T> | ||
class ReduceProdNPUKernel : public framework::OpKernel<T> { | ||
public: | ||
void Compute(const framework::ExecutionContext& ctx) const override { | ||
auto* x = ctx.Input<Tensor>("X"); | ||
auto* out = ctx.Output<Tensor>("Out"); | ||
auto dims = ctx.Attr<std::vector<int>>("dim"); | ||
bool keep_dim = ctx.Attr<bool>("keep_dim"); | ||
bool reduce_all = ctx.Attr<bool>("reduce_all"); | ||
int out_dtype = ctx.Attr<int>("out_dtype"); | ||
|
||
auto place = ctx.GetPlace(); | ||
|
||
framework::Tensor cast_out(x->type()); | ||
cast_out.Resize(out->dims()); | ||
cast_out.mutable_data<T>(place); | ||
|
||
auto cast_out_dtype = x->type(); | ||
if (out_dtype != -1) { | ||
cast_out_dtype = static_cast<framework::proto::VarType::Type>(out_dtype); | ||
} | ||
|
||
if (x->type() != cast_out_dtype) { | ||
if (cast_out_dtype == framework::proto::VarType::FP32) { | ||
out->mutable_data<float>(place); | ||
} else if (cast_out_dtype == framework::proto::VarType::FP16) { | ||
out->mutable_data<paddle::platform::float16>(place); | ||
} else if (cast_out_dtype == framework::proto::VarType::INT16) { | ||
out->mutable_data<int16_t>(place); | ||
} else if (cast_out_dtype == framework::proto::VarType::INT32) { | ||
out->mutable_data<int32_t>(place); | ||
} else if (cast_out_dtype == framework::proto::VarType::INT64) { | ||
out->mutable_data<int64_t>(place); | ||
} else if (cast_out_dtype == framework::proto::VarType::FP64) { | ||
out->mutable_data<double>(place); | ||
} else if (cast_out_dtype == framework::proto::VarType::BOOL) { | ||
out->mutable_data<bool>(place); | ||
} | ||
} else { | ||
out->ShareDataWith(cast_out); | ||
} | ||
|
||
framework::NPUAttributeMap attr_input = {{"axes", dims}, | ||
{"keep_dims", keep_dim}}; | ||
|
||
if (reduce_all) { | ||
std::vector<int> dim_vec; | ||
for (int i = 0; i < x->dims().size(); i++) { | ||
dim_vec.push_back(i); | ||
} | ||
|
||
attr_input = {{"axes", dim_vec}, {"keep_dims", keep_dim}}; | ||
} | ||
|
||
auto stream = | ||
ctx.template device_context<paddle::platform::NPUDeviceContext>() | ||
.stream(); | ||
|
||
const auto& runner = | ||
NpuOpRunner("ReduceProdD", {*x}, {cast_out}, attr_input); | ||
runner.Run(stream); | ||
|
||
if (x->type() != cast_out_dtype) { | ||
auto dst_dtype = ConvertToNpuDtype(cast_out_dtype); | ||
const auto& runner_cast = | ||
NpuOpRunner("Cast", {cast_out}, {*out}, | ||
{{"dst_type", static_cast<int>(dst_dtype)}}); | ||
runner_cast.Run(stream); | ||
} | ||
} | ||
}; | ||
|
||
} // namespace operators | ||
} // namespace paddle | ||
|
||
namespace ops = paddle::operators; | ||
namespace plat = paddle::platform; | ||
REGISTER_OP_NPU_KERNEL( | ||
reduce_prod, ops::ReduceProdNPUKernel<plat::NPUDeviceContext, float>, | ||
ops::ReduceProdNPUKernel<plat::NPUDeviceContext, plat::float16>); |
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
Oops, something went wrong.
4826669
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉