-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[phi] move shape op #40248
Merged
Merged
[phi] move shape op #40248
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
91c3499
add selected row op and fix bug in ctest
Liu-xiandong 364f0bd
modify the date
Liu-xiandong ec80b61
fix bug in npu and xpu
Liu-xiandong bac5371
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
Liu-xiandong e7b1bcd
modfiy the include file
Liu-xiandong File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,33 @@ | ||
// Copyright (c) 2022 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/phi/kernels/shape_kernel.h" | ||
#include "paddle/phi/kernels/impl/shape_kernel_impl.h" | ||
|
||
#include "paddle/phi/backends/cpu/cpu_context.h" | ||
#include "paddle/phi/core/kernel_registry.h" | ||
|
||
PD_REGISTER_KERNEL(shape, | ||
CPU, | ||
ALL_LAYOUT, | ||
phi::ShapeKernel, | ||
bool, | ||
int, | ||
int8_t, | ||
uint8_t, | ||
int64_t, | ||
float, | ||
double, | ||
phi::dtype::complex<float>, | ||
phi::dtype::complex<double>) {} |
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,35 @@ | ||
/* Copyright (c) 2022 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/phi/kernels/shape_kernel.h" | ||
|
||
#include "paddle/phi/backends/gpu/gpu_context.h" | ||
#include "paddle/phi/common/float16.h" | ||
#include "paddle/phi/core/kernel_registry.h" | ||
#include "paddle/phi/kernels/impl/shape_kernel_impl.h" | ||
|
||
PD_REGISTER_KERNEL(shape, | ||
GPU, | ||
ALL_LAYOUT, | ||
phi::ShapeKernel, | ||
bool, | ||
int, | ||
int8_t, | ||
uint8_t, | ||
int64_t, | ||
float, | ||
double, | ||
phi::dtype::complex<float>, | ||
phi::dtype::complex<double>, | ||
phi::dtype::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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* Copyright (c) 2022 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/phi/core/dense_tensor.h" | ||
|
||
namespace phi { | ||
|
||
template <typename T, typename Context> | ||
void ShapeKernel(const Context& ctx, | ||
const DenseTensor& input, | ||
DenseTensor* out) { | ||
auto in_var = &input; | ||
phi::DDim in_dims; | ||
in_dims = in_var->dims(); | ||
auto out_t = out; | ||
out_t->Resize({in_dims.size()}); | ||
auto out_data = ctx.template HostAlloc<int32_t>(out_t); | ||
for (int i = 0; i < in_dims.size(); ++i) { | ||
out_data[i] = in_dims[i]; | ||
} | ||
} | ||
|
||
} // namespace phi |
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,70 @@ | ||
/* Copyright (c) 2022 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/phi/kernels/selected_rows/shape_kernel.h" | ||
#include "paddle/phi/backends/cpu/cpu_context.h" | ||
#include "paddle/phi/backends/gpu/gpu_context.h" | ||
#include "paddle/phi/common/float16.h" | ||
#include "paddle/phi/core/kernel_registry.h" | ||
|
||
namespace phi { | ||
namespace sr { | ||
|
||
template <typename T, typename Context> | ||
void ShapeKernel(const Context& ctx, | ||
Liu-xiandong marked this conversation as resolved.
Show resolved
Hide resolved
|
||
const SelectedRows& input, | ||
DenseTensor* out) { | ||
auto in_var = input; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 日升的建议是合理的,这段代码改成ShapeKernel<T, Context >(dev_ctx, input.value(), out);,是不是逻辑一样? |
||
phi::DDim in_dims; | ||
in_dims = in_var.value().dims(); | ||
auto out_t = out; | ||
out_t->Resize({in_dims.size()}); | ||
auto out_data = ctx.template HostAlloc<int32_t>(out_t); | ||
for (int i = 0; i < in_dims.size(); ++i) { | ||
out_data[i] = in_dims[i]; | ||
} | ||
} | ||
|
||
} // namespace sr | ||
} // namespace phi | ||
|
||
PD_REGISTER_KERNEL(shape_sr, | ||
CPU, | ||
ALL_LAYOUT, | ||
phi::sr::ShapeKernel, | ||
bool, | ||
int, | ||
int8_t, | ||
uint8_t, | ||
int64_t, | ||
float, | ||
double, | ||
phi::dtype::complex<float>, | ||
phi::dtype::complex<double>) {} | ||
|
||
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) | ||
PD_REGISTER_KERNEL(shape_sr, | ||
GPU, | ||
ALL_LAYOUT, | ||
phi::sr::ShapeKernel, | ||
bool, | ||
int, | ||
int8_t, | ||
uint8_t, | ||
int64_t, | ||
float, | ||
double, | ||
phi::dtype::complex<float>, | ||
phi::dtype::complex<double>) {} | ||
#endif |
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,28 @@ | ||
/* Copyright (c) 2022 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/phi/core/selected_rows.h" | ||
|
||
namespace phi { | ||
namespace sr { | ||
|
||
template <typename T, typename Context> | ||
void ShapeKernel(const Context& ctx, | ||
const SelectedRows& input, | ||
DenseTensor* out); | ||
|
||
} // namespace sr | ||
} // namespace phi |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
这个是不是可以向reshape一样直接放到kernels目录下呢,shape在每个设备上的实现都是一样的