Skip to content

Commit 81e7aa5

Browse files
committed
fix
1 parent b334e9c commit 81e7aa5

23 files changed

Lines changed: 24 additions & 24 deletions

backends/metax_gpu/kernels/cuda_kernels/cholesky_solve_grad_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/cholesky_solve_grad_kernel_impl.h"
1615
#include "paddle/phi/backends/gpu/gpu_context.h"
1716
#include "paddle/phi/core/kernel_registry.h"
17+
#include "paddle/phi/kernels/impl/cholesky_solve_grad_kernel_impl.h"
1818

1919
PD_CUSTOM_KERNEL_REGISTER(cholesky_solve_grad,
2020
metax_gpu,

backends/metax_gpu/kernels/cuda_kernels/dirichlet_kernel_register.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/dirichlet_kernel_impl.h"
1615
#include "paddle/phi/backends/gpu/gpu_context.h"
1716
#include "paddle/phi/core/kernel_registry.h"
17+
#include "paddle/phi/kernels/impl/dirichlet_kernel_impl.h"
1818

1919
PD_CUSTOM_KERNEL_REGISTER(dirichlet,
2020
metax_gpu,
2121
ALL_LAYOUT,
22-
phi::Dirichletkernel,
22+
phi::DirichletKernel,
2323
float,
2424
double,
2525
phi::dtype::float16,

backends/metax_gpu/kernels/cuda_kernels/gru_unit_grad_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/gru_unit_kernel_impl.h"
1615
#include "paddle/phi/core/kernel_registry.h"
16+
#include "paddle/phi/kernels/impl/gru_unit_kernel_impl.h"
1717

1818
PD_CUSTOM_KERNEL_REGISTER(gru_unit_grad,
1919
metax_gpu,

backends/metax_gpu/kernels/cuda_kernels/gru_unit_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/gru_unit_kernel_impl.h"
1615
#include "paddle/phi/core/kernel_registry.h"
16+
#include "paddle/phi/kernels/impl/gru_unit_kernel_impl.h"
1717

1818
PD_CUSTOM_KERNEL_REGISTER(
1919
gru_unit, metax_gpu, ALL_LAYOUT, phi::GRUUnitKernel, float, double) {}

backends/metax_gpu/kernels/cuda_kernels/inverse_grad_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/inverse_grad_kernel_impl.h"
1615
#include "paddle/phi/backends/gpu/gpu_context.h"
1716
#include "paddle/phi/core/kernel_registry.h"
17+
#include "paddle/phi/kernels/impl/inverse_grad_kernel_impl.h"
1818
#include "paddle/phi/kernels/inverse_grad_kernel.h"
1919

2020
PD_CUSTOM_KERNEL_REGISTER(inverse_grad,

backends/metax_gpu/kernels/cuda_kernels/lstm_grad_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/lstm_kernel_impl.h"
15+
#include "paddle/phi/kernels/impl/lstm_kernel_impl.h"
1616
#include "paddle/phi/kernels/lstm_kernel.h"
1717

1818
PD_CUSTOM_KERNEL_REGISTER(

backends/metax_gpu/kernels/custom_kernel/addmm_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
See the License for the specific language governing permissions and
1313
limitations under the License. */
1414

15-
#include "../impl/addmm_kernel_impl.h"
1615
#include "paddle/phi/backends/gpu/gpu_context.h"
1716
#include "paddle/phi/core/kernel_registry.h"
1817
#include "paddle/phi/kernels/addmm_kernel.h"
18+
#include "paddle/phi/kernels/impl/addmm_kernel_impl.h"
1919

2020
PD_REGISTER_PLUGIN_KERNEL(addmm,
2121
metax_gpu,

backends/metax_gpu/kernels/custom_kernel/bilinear_grad_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/bilinear_grad_kernel_impl.h"
1615
#include "paddle/phi/core/kernel_registry.h"
1716
#include "paddle/phi/kernels/bilinear_grad_kernel.h"
17+
#include "paddle/phi/kernels/impl/bilinear_grad_kernel_impl.h"
1818

1919
PD_REGISTER_PLUGIN_KERNEL(bilinear_grad,
2020
metax_gpu,

backends/metax_gpu/kernels/custom_kernel/bilinear_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/bilinear_kernel_impl.h"
1615
#include "paddle/phi/core/kernel_registry.h"
1716
#include "paddle/phi/kernels/bilinear_kernel.h"
17+
#include "paddle/phi/kernels/impl/bilinear_kernel_impl.h"
1818

1919
PD_REGISTER_PLUGIN_KERNEL(
2020
bilinear, metax_gpu, ALL_LAYOUT, phi::BilinearKernel, float, double) {}

backends/metax_gpu/kernels/custom_kernel/bmm_grad_kernel_register.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
#include "kernels/impl/bmm_grad_kernel_impl.h"
1615
#include "paddle/phi/backends/gpu/gpu_context.h"
1716
#include "paddle/phi/core/kernel_registry.h"
1817
#include "paddle/phi/kernels/bmm_grad_kernel.h"
18+
#include "paddle/phi/kernels/impl/bmm_grad_kernel_impl.h"
1919

2020
PD_REGISTER_PLUGIN_KERNEL(bmm_grad,
2121
metax_gpu,

0 commit comments

Comments
 (0)