// 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/backends/xpu/enforce_xpu.h" #include "paddle/phi/core/kernel_registry.h" #include "paddle/phi/kernels/impl/matmul_grad_kernel_impl.h" #include "paddle/phi/kernels/xpu/xpu_api_wrapper.h" namespace phi { template static void MatMulXPUFunction(const DenseTensor& x, const DenseTensor& y, DenseTensor* out, bool trans_x, bool trans_y, xpu::Context* xpu_ctx) { using XPUType = typename XPUTypeTrait::Type; const auto& x_dims = x.dims(); const auto& y_dims = y.dims(); auto mat_dim_a = phi::funcs::CreateMatrixDescriptor( RowMatrixFromVector(x_dims), 0, trans_x); auto mat_dim_b = phi::funcs::CreateMatrixDescriptor( ColumnMatrixFromVector(y_dims), 0, trans_y); T* data_c = out->data(); int m = mat_dim_a.height_; int n = mat_dim_b.width_; int k = mat_dim_a.width_; int batch_size = mat_dim_a.batch_size_; // batch matmul int r = xpu::fc_batched( xpu_ctx, // Context* ctx, batch_size, // int batch_size, mat_dim_a.trans_, // bool x_trans, mat_dim_b.trans_, // bool w_trans, m, // int m, n, // int n, k, // int k, 1.0, // float alpha, reinterpret_cast(x.data()), // const TX* x, mat_dim_a.stride_, // int stride_a, reinterpret_cast(y.data()), // const TW* w, mat_dim_b.stride_, // int stride_b, 0.0, // float beta, reinterpret_cast(data_c), // TY* y, m * n, // int stride_c, nullptr, // const float* x_maxptr, nullptr); // const float* w_maxptr PADDLE_ENFORCE_XDNN_SUCCESS(r, "fc_batched"); } } // namespace phi