1/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations 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
24namespace tflite {
25namespace cpu_backend_gemm {
26namespace detail {
27
28struct 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