103 lines
3.3 KiB
Python
103 lines
3.3 KiB
Python
# Copyright 2019 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.
|
|
"""Lit runner configuration."""
|
|
|
|
import os
|
|
import platform
|
|
import sys
|
|
import lit.formats
|
|
from lit.llvm import llvm_config
|
|
from lit.llvm.subst import ToolSubst
|
|
|
|
# Lint for undefined variables is disabled as config is not defined inside this
|
|
# file, instead config is injected by way of evaluating runlit.cfg.py from
|
|
# runlit.site.cfg.py which in turn is evaluated by lit.py. The structure is
|
|
# common for lit tests and intended to only persist temporarily (b/136126535).
|
|
# pylint: disable=undefined-variable
|
|
# Configuration file for the 'lit' test runner.
|
|
|
|
# name: The name of this test suite.
|
|
config.name = 'MLIR ' + os.path.basename(config.mlir_test_dir)
|
|
|
|
config.test_format = lit.formats.ShTest()
|
|
|
|
# suffixes: A list of file extensions to treat as test files.
|
|
config.suffixes = ['.cc', '.hlo', '.json', '.mlir', '.pbtxt', '.py']
|
|
|
|
# test_source_root: The root path where tests are located.
|
|
config.test_source_root = config.mlir_test_dir
|
|
|
|
# test_exec_root: The root path where tests should be run.
|
|
config.test_exec_root = os.environ['RUNFILES_DIR']
|
|
|
|
if platform.system() == 'Windows':
|
|
tool_patterns = [
|
|
ToolSubst('FileCheck.exe', unresolved='fatal'),
|
|
# Handle these specially as they are strings searched for during testing.
|
|
ToolSubst('count.exe', unresolved='fatal'),
|
|
ToolSubst('not.exe', unresolved='fatal')
|
|
]
|
|
|
|
llvm_config.config.substitutions.append(
|
|
('%python', '"%s"' % (sys.executable)))
|
|
|
|
llvm_config.add_tool_substitutions(tool_patterns,
|
|
[llvm_config.config.llvm_tools_dir])
|
|
else:
|
|
llvm_config.use_default_substitutions()
|
|
|
|
llvm_config.config.substitutions.append(
|
|
('%tfrt_bindir', 'third_party/tensorflow/compiler/aot'))
|
|
|
|
# Tweak the PATH to include the tools dir.
|
|
llvm_config.with_environment('PATH', config.llvm_tools_dir, append_path=True)
|
|
|
|
tool_dirs = config.mlir_tf_tools_dirs + [
|
|
config.mlir_tools_dir, config.llvm_tools_dir
|
|
]
|
|
tool_names = [
|
|
'dtensor-opt',
|
|
'flatbuffer_to_string',
|
|
'flatbuffer_translate',
|
|
'hlo_to_kernel',
|
|
'json_to_flatbuffer',
|
|
'kernel-gen-opt',
|
|
'litert-opt',
|
|
'mlir-hlo-opt',
|
|
'mlir-opt',
|
|
'mlir-tflite-runner',
|
|
'mlir-translate',
|
|
'odml-to-stablehlo-opt',
|
|
'odml_to_stablehlo',
|
|
'odml-converter',
|
|
'stable-quant-opt',
|
|
'tac-opt-all-backends',
|
|
'tac-translate',
|
|
'tf-mlir-translate',
|
|
'tf-opt',
|
|
'tf-quant-opt',
|
|
'tf-reduce',
|
|
'tf-tfrt-opt',
|
|
'tf_tfjs_translate',
|
|
'tf_tfl_translate',
|
|
'tfcompile',
|
|
'tfg-opt-no-passes',
|
|
'tfg-transforms-opt',
|
|
'tfg-translate',
|
|
'tfjs-opt',
|
|
]
|
|
tools = [ToolSubst(s, unresolved='ignore') for s in tool_names]
|
|
llvm_config.add_tool_substitutions(tools, tool_dirs)
|
|
# pylint: enable=undefined-variable
|