Skip to content

Commit c0a896f

Browse files
committed
fix: rename tvm-ffi-orcjit folder to tvm_ffi_orcjit
1 parent 9cd4e4b commit c0a896f

44 files changed

Lines changed: 29 additions & 29 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ name: OrcJIT Build
2020
on:
2121
push:
2222
paths:
23-
- "addons/tvm-ffi-orcjit/**"
24-
- ".github/workflows/tvm-ffi-orcjit.yml"
23+
- "addons/tvm_ffi_orcjit/**"
24+
- ".github/workflows/tvm_ffi_orcjit.yml"
2525
pull_request:
2626
paths:
27-
- "addons/tvm-ffi-orcjit/**"
28-
- ".github/workflows/tvm-ffi-orcjit.yml"
27+
- "addons/tvm_ffi_orcjit/**"
28+
- ".github/workflows/tvm_ffi_orcjit.yml"
2929
workflow_dispatch:
3030

3131
jobs:
@@ -95,7 +95,7 @@ jobs:
9595
- name: Build and test wheels
9696
uses: pypa/cibuildwheel@298ed2fb2c105540f5ed055e8a6ad78d82dd3a7e # v3.3.1
9797
with:
98-
package-dir: addons/tvm-ffi-orcjit
98+
package-dir: addons/tvm_ffi_orcjit
9999
output-dir: wheelhouse
100100
env:
101101
CIBW_BUILD: ${{ matrix.build }}
@@ -110,7 +110,7 @@ jobs:
110110
CIBW_TEST_REQUIRES: pytest ninja
111111
CIBW_TEST_COMMAND: >-
112112
pip install --force-reinstall {project} &&
113-
python {project}/addons/tvm-ffi-orcjit/tests/run_all_tests.py
113+
python {project}/addons/tvm_ffi_orcjit/tests/run_all_tests.py
114114
115115
- uses: actions/upload-artifact@v4
116116
with:
Lines changed: 9 additions & 9 deletions
Lines changed: 5 additions & 5 deletions

addons/tvm-ffi-orcjit/examples/quick-start/CMakeLists.txt renamed to addons/tvm_ffi_orcjit/examples/quick-start/CMakeLists.txt

File renamed without changes.

addons/tvm-ffi-orcjit/examples/quick-start/README.md renamed to addons/tvm_ffi_orcjit/examples/quick-start/README.md

Lines changed: 2 additions & 2 deletions

addons/tvm-ffi-orcjit/examples/quick-start/add.cc renamed to addons/tvm_ffi_orcjit/examples/quick-start/add.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Quick Start Example - Simple Math Functions
2222
*
2323
* This file demonstrates how to export C++ functions using TVM-FFI
24-
* so they can be loaded dynamically at runtime with tvm-ffi-orcjit.
24+
* so they can be loaded dynamically at runtime with tvm_ffi_orcjit.
2525
*/
2626

2727
#include <tvm/ffi/function.h>

addons/tvm-ffi-orcjit/examples/quick-start/add_c.c renamed to addons/tvm_ffi_orcjit/examples/quick-start/add_c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* This file demonstrates how to export C functions using TVM-FFI's
2424
* C ABI (TVMFFISafeCallType) so they can be loaded dynamically at
25-
* runtime with tvm-ffi-orcjit. No C++ runtime dependencies.
25+
* runtime with tvm_ffi_orcjit. No C++ runtime dependencies.
2626
*/
2727
#include <tvm/ffi/c_api.h>
2828

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ requires = ["scikit-build-core>=0.10.0", "apache-tvm-ffi"]
2020
build-backend = "scikit_build_core.build"
2121

2222
[project]
23-
name = "apache-tvm-ffi-orcjit"
23+
name = "apache-tvm_ffi_orcjit"
2424
version = "0.1.0"
2525
description = "Load TVM-FFI exported object files using LLVM ORC JIT v2"
2626
readme = "README.md"

0 commit comments

Comments
 (0)