-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add selected row op and fix bug in ctest * modify the date * fix bug in npu and xpu * modfiy the include file
- Loading branch information
1 parent
df60166
commit 575dea8
Showing
12 changed files
with
279 additions
and
90 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 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, | ||
const SelectedRows& input, | ||
DenseTensor* out) { | ||
auto in_var = input; | ||
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.