-
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.
move elementwise_mul selected rows input (#41042)
- Loading branch information
1 parent
04325d2
commit 13f1641
Showing
10 changed files
with
161 additions
and
205 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
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
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,115 @@ | ||
/* 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/elementwise_kernel.h" | ||
|
||
#include "paddle/phi/backends/cpu/cpu_context.h" | ||
#include "paddle/phi/common/bfloat16.h" | ||
#include "paddle/phi/common/complex.h" | ||
#include "paddle/phi/common/float16.h" | ||
#include "paddle/phi/core/enforce.h" | ||
#include "paddle/phi/core/kernel_registry.h" | ||
#include "paddle/phi/kernels/elementwise_kernel.h" | ||
|
||
namespace phi { | ||
namespace sr { | ||
|
||
template <typename T, typename Context> | ||
void MultiplyRawKernel(const Context& dev_ctx, | ||
const SelectedRows& x, | ||
const DenseTensor& y, | ||
int axis, | ||
SelectedRows* out) { | ||
PADDLE_ENFORCE_EQ(y.dims().size() == 1 && y.dims()[0] == 1, | ||
true, | ||
phi::errors::InvalidArgument( | ||
"For MultiplyKernel, if X is Sparse, Y must be " | ||
"scalar. But reveived the size of Y = %s.", | ||
y.dims().size())); | ||
out->set_rows(x.rows()); | ||
out->set_height(x.height()); | ||
auto z = out->mutable_value(); | ||
z->Resize(x.value().dims()); | ||
dev_ctx.Alloc(z, x.value().dtype()); | ||
MultiplyRawKernel<T, Context>(dev_ctx, x.value(), y, axis, z); | ||
} | ||
|
||
template <typename T, typename Context> | ||
void MultiplyKernel(const Context& dev_ctx, | ||
const SelectedRows& x, | ||
const DenseTensor& y, | ||
SelectedRows* out) { | ||
int axis = -1; | ||
MultiplyRawKernel<T, Context>(dev_ctx, x, y, axis, out); | ||
} | ||
|
||
} // namespace sr | ||
} // namespace phi | ||
|
||
using complex64 = ::phi::dtype::complex<float>; | ||
using complex128 = ::phi::dtype::complex<double>; | ||
|
||
PD_REGISTER_KERNEL(multiply_raw_sr, | ||
CPU, | ||
ALL_LAYOUT, | ||
phi::sr::MultiplyRawKernel, | ||
float, | ||
double, | ||
int, | ||
int64_t, | ||
bool, | ||
phi::dtype::bfloat16, | ||
complex64, | ||
complex128) {} | ||
PD_REGISTER_KERNEL(multiply_sr, | ||
CPU, | ||
ALL_LAYOUT, | ||
phi::sr::MultiplyKernel, | ||
float, | ||
double, | ||
int, | ||
int64_t, | ||
bool, | ||
phi::dtype::bfloat16, | ||
complex64, | ||
complex128) {} | ||
|
||
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) | ||
PD_REGISTER_KERNEL(multiply_raw_sr, | ||
GPU, | ||
ALL_LAYOUT, | ||
phi::sr::MultiplyRawKernel, | ||
float, | ||
double, | ||
int, | ||
int64_t, | ||
bool, | ||
phi::dtype::bfloat16, | ||
phi::dtype::float16, | ||
complex64, | ||
complex128) {} | ||
PD_REGISTER_KERNEL(multiply_sr, | ||
GPU, | ||
ALL_LAYOUT, | ||
phi::sr::MultiplyKernel, | ||
float, | ||
double, | ||
int, | ||
int64_t, | ||
bool, | ||
phi::dtype::bfloat16, | ||
phi::dtype::float16, | ||
complex64, | ||
complex128) {} | ||
#endif |
Oops, something went wrong.