This is an automated email from the ASF dual-hosted git repository.
mshr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 843a574141 [MISC] Remove unused TVMC configs (#18512)
843a574141 is described below
commit 843a5741412de1af9b51291d5552bc4bfe4cc38e
Author: Siyuan Feng <[email protected]>
AuthorDate: Wed Nov 26 21:55:25 2025 +0800
[MISC] Remove unused TVMC configs (#18512)
The configs folder under root directory is no longer needed, as TVMC is
removed from the repository.
---
CMakeLists.txt | 6 ------
configs/host/default.json | 7 -------
configs/test/compile_config_test.json | 9 ---------
configs/test/tune_config_test.json | 6 ------
4 files changed, 28 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 4b9112e265..ec7bd6c514 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -889,12 +889,6 @@ if(TVM_BUILD_PYTHON_MODULE)
# Install web package
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/web/" DESTINATION "web/")
- # Install essential configuration files
- install(
- DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/configs/"
- DESTINATION "configs/"
- )
-
# Install licenses (required for distribution)
install(
DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/licenses/"
diff --git a/configs/host/default.json b/configs/host/default.json
deleted file mode 100644
index 2c29445501..0000000000
--- a/configs/host/default.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "targets": [
- {
- "kind": "llvm"
- }
- ]
-}
diff --git a/configs/test/compile_config_test.json
b/configs/test/compile_config_test.json
deleted file mode 100644
index dcc6dbd27e..0000000000
--- a/configs/test/compile_config_test.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "targets": [
- {"kind": "cmsis-nn", "from_device": "1"},
- {"kind": "c", "mcpu": "cortex-m55"}
- ],
- "executor": { "kind": "aot"},
- "runtime": { "kind": "crt"},
- "pass-config": { "tir.disable_vectorize": "1"}
-}
diff --git a/configs/test/tune_config_test.json
b/configs/test/tune_config_test.json
deleted file mode 100644
index 69babc753e..0000000000
--- a/configs/test/tune_config_test.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "targets": [
- { "kind": "llvm" }
- ],
- "trials": "2"
-}