xref: /aosp_15_r20/external/tensorflow/tensorflow/lite/kernels/cpu_backend_gemm_eigen.h (revision b6fb3261f9314811a0f4371741dbb8839866f948)
1 /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
2 
3 Licensed under the Apache License, Version 2.0 (the "License");
4 you may not use this file except in compliance with the License.
5 You may obtain a copy of the License at
6 
7     http://www.apache.org/licenses/LICENSE-2.0
8 
9 Unless required by applicable law or agreed to in writing, software
10 distributed under the License is distributed on an "AS IS" BASIS,
11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 See the License for the specific language governing permissions and
13 limitations under the License.
14 ==============================================================================*/
15 
16 #ifndef TENSORFLOW_LITE_KERNELS_CPU_BACKEND_GEMM_EIGEN_H_
17 #define TENSORFLOW_LITE_KERNELS_CPU_BACKEND_GEMM_EIGEN_H_
18 
19 #ifndef TFLITE_WITH_RUY
20 
21 #include "tensorflow/lite/kernels/cpu_backend_context.h"
22 #include "tensorflow/lite/kernels/cpu_backend_gemm_params.h"
23 
24 namespace tflite {
25 namespace cpu_backend_gemm {
26 namespace detail {
27 
28 struct GemmImplUsingEigen {
29   static void Run(const MatrixParams<float>& lhs_params, const float* lhs_data,
30                   const MatrixParams<float>& rhs_params, const float* rhs_data,
31                   const MatrixParams<float>& dst_params, float* dst_data,
32                   const GemmParams<float, float>& params,
33                   CpuBackendContext* /* context */);
34 };
35 
36 }  // namespace detail
37 }  // namespace cpu_backend_gemm
38 }  // namespace tflite
39 
40 #endif  // not TFLITE_WITH_RUY
41 
42 #endif  // TENSORFLOW_LITE_KERNELS_CPU_BACKEND_GEMM_EIGEN_H_
43