2019-11-19 08:37:58 +08:00
|
|
|
|
2019-11-20 23:59:48 +08:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import platform
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
import lit.util
|
2019-11-19 08:37:58 +08:00
|
|
|
import lit.formats
|
|
|
|
from lit.llvm import llvm_config
|
2019-11-20 23:59:48 +08:00
|
|
|
from lit.llvm.subst import FindTool
|
2019-11-19 08:37:58 +08:00
|
|
|
from lit.llvm.subst import ToolSubst
|
|
|
|
|
|
|
|
# name: The name of this test suite.
|
|
|
|
config.name = 'Open Neural Network Frontend'
|
|
|
|
|
|
|
|
config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
|
|
|
|
|
|
|
|
# test_source_root: The root path where tests are located.
|
2020-03-17 21:16:33 +08:00
|
|
|
config.test_source_root = config.onnx_mlir_test_src_dir
|
2019-11-19 08:37:58 +08:00
|
|
|
|
|
|
|
# test_exec_root: The root path where tests should be run.
|
2020-03-17 21:16:33 +08:00
|
|
|
config.test_exec_root = config.onnx_mlir_test_build_dir
|
2019-11-19 08:37:58 +08:00
|
|
|
|
|
|
|
llvm_config.use_default_substitutions()
|
|
|
|
|
|
|
|
# Tweak the PATH to include the tools dir.
|
|
|
|
llvm_config.with_environment('PATH', config.llvm_tools_dir, append_path=True)
|
|
|
|
|
|
|
|
tool_dirs = [
|
2020-03-17 21:16:33 +08:00
|
|
|
config.onnx_mlir_tools_dir, config.mlir_tools_dir, config.llvm_tools_dir
|
2019-11-19 08:37:58 +08:00
|
|
|
]
|
|
|
|
tool_names = [
|
Compiling Models with Large Constant Arrays (#146)
* PoC works.
* MNist works.
* Clean up.
* Fix test.
* Make Linux work.
* Use consistent symbol name.
* Fix variable name.
* Fix array addr access.
* Bug fix.
* Bug fix.
* install before running e2e tests.
* Fix build config.
* Use sudo when installing.
* Make embeddedDataLoader position independent.
* Enable ResNet50.
* Format code.
* Format MainUtil.
* Try not using sudo to install.
* Supply runtime dir via environment variable.
* Dump problematic operation.
* Dump entire function.
* Debug.
* Dump input.
* Dump constant op.
* Debug.
* Debug.
* Debug.
* Print to stderr.
* take care of endianness.
* Use endianness-aware execution session.
* Fix ZLinux error.
* Include warning when desired output endianness can't be deduced.
* Remove debug code.
* Remove debug code in shape inference.
* Support binary-decoder for testing constants packing.
* Support filename, move-to-file, elision-threshold configurations in constant packing pass for easy testing.
* Add lit test, fix lit test type mismatch.
* Add more consts packing tests.
* Ensure intermediate files are properly cleaned up.
* No need for constant elimination.
* Link with threading libraries.
* Remove debug code.
* Format code.
* More tests.
* test nit.
* Remove debug code.
* Reduce hard-coded constants.
* Use temporary and unique working directory for hosting model parameters.
* Test if it works.
* Try to find objcopy.
* Rename symbols using objcopy.
* Move sanitized name to linux section.
* Use verbose mode for debugging.
* Disambiguate pass constructor.
* Fix symbol name.
* Use Command API to build and execute commands.
* Move linux to use Command API.
* Fix reset args.
* Execute redefine sym.
* Format code.
* Do not use verbose mode for CircleCI.
* Remove debug code.
* Prettify code, add comments.
* getSegmentData -> getEmbeddedConstPool
* vector -> std::vector.
* Make sure we properly clean up intermediate files.
* Fix test cases.
* Add runtime directory.
* Trigger rebuild.
* [Merge with master] fix debug script.
* Diable affine fusion pass for now.
* Support generic fallback const packing mechanism.
* Remove debug code.
* Handle the case where objcopy is not available.
* Fix Windows missing types.
* Support int64.
* Copy packed constant to a local directory for non-Linux/Mac platforms.
* Nit: remove debug code, refactor const pack preprocessing out as a separate function.
* Cannot make preprocessConstPack a standalone function because file removers are stack-allocated, and they are deallocated prematurely when function stack gets popped, deleteing intermediate files too early.
* Don't require executable filename.
* Import ONNX data types directly.
* Fix LIT test.
* Bug fix, use moved string value.
* Remove redundant filenames.
* Fix CMake script.
* Embed endianness information as a symbol, and check during runtime.
* More comments, update lit tests.
* Fix lit test on BE machine.
* Copyright notices.
2020-06-12 10:27:05 +08:00
|
|
|
'onnx-mlir-opt', 'mlir-opt', 'mlir-translate', "binary-decoder"
|
2019-11-19 08:37:58 +08:00
|
|
|
]
|
|
|
|
tools = [ToolSubst(s, unresolved='ignore') for s in tool_names]
|
|
|
|
llvm_config.add_tool_substitutions(tools, tool_dirs)
|