Benjamin Kramer 9a8fd0e99c [XLA:CPU] Lower small matmul through MLIR linalg by default
Benchmarks are neutral to positive.

PiperOrigin-RevId: 321611928
Change-Id: I0c7c5535b49b97581c99b1fb77f4ccd7741e3d1c
2020-07-16 11:49:08 -07:00

39 lines
1.5 KiB
C++

/* Copyright 2017 The TensorFlow 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.
==============================================================================*/
#ifndef TENSORFLOW_COMPILER_XLA_SERVICE_CPU_CPU_OPTIONS_H_
#define TENSORFLOW_COMPILER_XLA_SERVICE_CPU_CPU_OPTIONS_H_
#include "tensorflow/compiler/xla/service/hlo_module_config.h"
// Helper functions for querying options that are specific to the CPU backend.
namespace xla {
namespace cpu {
namespace options {
bool OptimizeForSizeRequested(const HloModuleConfig& config);
bool VectorizedReduceDisabled(const HloModuleConfig& config);
bool ForceEnableExperimentalLlvmIrGemm(const HloModuleConfig& config);
absl::optional<int64> LlvmIrGemvTilingFactor(const HloModuleConfig& config);
absl::optional<std::tuple<int64, int64, int64>> LlvmIrGemmTileSize(
const HloModuleConfig& config);
} // namespace options
} // namespace cpu
} // namespace xla
#endif // TENSORFLOW_COMPILER_XLA_SERVICE_CPU_CPU_OPTIONS_H_