tqchen opened a new pull request, #19681: URL: https://github.com/apache/tvm/pull/19681
[Bump] tvm-ffi to 59da4c0 Bumps `3rdparty/tvm-ffi` from 98d0029 to 59da4c0, picking up seven commits from apache/tvm-ffi: - [FEAT] Optimize Expected<T> for minimal compiled code and efficiency (#599) - [FEAT] Streamline AccessPath/AccessStep print format (#598) - [CI] Use uv tool run for sdist build instead of pipx (#600) - [CORE] Make AnyView trivially copyable — match C-ABI struct passing (#602) - feat(python): add tensor methods to align with C++ APIs (#604) - [FIX] Drop test_empty_tensor_attributes (numpy dlpack stride change) (#607) - [TEST] Relax test_shared_dag_hash_scaling_not_exponential ratio to 4x (#612) The bump range is additive for almost all of the above (performance improvements to Expected<T>, new Python tensor methods, AnyView ABI alignment, CI toolchain switch). One commit required a TVM-side migration: apache/tvm-ffi#598 moved the `__ffi_repr__` hooks for `ffi::reflection::AccessPath` and `AccessStep` into tvm-ffi itself (src/ffi/extra/reflection_extra.cc, compiled into libtvm_ffi.so). TVM already registered the same hooks in src/ir/access_path_repr.cc, causing a double-registration abort at library load time. This commit removes the duplicate AccessPath/AccessStep `__ffi_repr__` registrations from access_path_repr.cc, keeping only the `node.AsRepr` global function that tvm-ffi does not provide. The format emitted by tvm-ffi's hooks is equivalent for common cases; missing-item steps now use the `[<missing:...>]` notation from tvm-ffi rather than the `...?` suffix that TVM used previously. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
