Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3rdparty/cutlass
Submodule cutlass updated 221 files
2 changes: 1 addition & 1 deletion 3rdparty/tvm-ffi
Submodule tvm-ffi updated 51 files
+6 −0 .asf.yaml
+2 −2 .github/workflows/ci_test.yml
+26 −10 .github/workflows/publish_wheel.yml
+1 −0 .gitignore
+22 −2 CMakeLists.txt
+15 −0 README.md
+36 −2 docs/README.md
+78 −1 docs/conf.py
+0 −81 docs/get_started/install.md
+0 −295 docs/get_started/quick_start.md
+427 −0 docs/get_started/quickstart.rst
+98 −0 docs/guides/build_from_source.md
+1 −1 docs/guides/python_guide.md
+190 −14 docs/guides/python_packaging.md
+217 −0 docs/guides/rust_guide.md
+81 −0 docs/guides/stable_c_abi.md
+19 −3 docs/index.rst
+53 −20 docs/reference/python/index.rst
+40 −0 docs/reference/rust/index.rst
+14 −1 examples/packaging/python/my_ffi_extension/__init__.py
+10 −1 examples/packaging/run_example.py
+42 −0 examples/packaging/src/extension.cc
+7 −1 examples/quick_start/CMakeLists.txt
+31 −0 include/tvm/ffi/c_api.h
+54 −8 include/tvm/ffi/container/tensor.h
+2 −1 include/tvm/ffi/endian.h
+6 −5 pyproject.toml
+5 −3 python/tvm_ffi/__init__.py
+4 −2 python/tvm_ffi/_dtype.py
+15 −0 python/tvm_ffi/_optional_torch_c_dlpack.py
+1 −1 python/tvm_ffi/_tensor.py
+4 −2 python/tvm_ffi/base.py
+45 −5 python/tvm_ffi/container.py
+1 −0 python/tvm_ffi/cython/device.pxi
+15 −0 python/tvm_ffi/cython/function.pxi
+4 −4 python/tvm_ffi/dataclasses/_utils.py
+11 −5 python/tvm_ffi/dataclasses/c_class.py
+2 −0 python/tvm_ffi/libinfo.py
+4 −2 python/tvm_ffi/module.py
+9 −7 python/tvm_ffi/stream.py
+30 −8 rust/tvm-ffi-sys/build.rs
+6 −0 src/ffi/object.cc
+32 −0 tests/cpp/test_base.cc
+9 −0 tests/cpp/test_tensor.cc
+4 −3 tests/lint/check_asf_header.py
+4 −3 tests/lint/check_version.py
+1 −0 tests/lint/clang_tidy_precommit.py
+9 −1 tests/python/test_container.py
+2 −1 tests/python/test_dtype.py
+15 −0 tests/python/test_function.py
+2 −0 tests/scripts/benchmark_dlpack.py
Loading