Qiang Zhang
Qiang Zhang
Recently we do the TVM deploy work on QNX, and found 2 places that dmlc-core haven't handle correctly. 1. Backtraces Even through QNX have a library named "libbacktrace" can do...
Fix https://github.com/apache/tvm/issues/16633 The broken tests are below items of "tests/scripts/task_python_unittest.sh" "tir-transform" "tir-usmp" The crashed cases: tests/python/tir-transform/test_tir_transform_inject_rolling_buffer.py tests/python/tir-usmp/test_tir_usmp_algo.py tests/python/tir-usmp/test_tir_usmp_analysis_extract_bufferinfo.py tests/python/tir-usmp/test_tir_usmp_transform_convert_pool_allocations_to_offsets.py tests/python/tir-usmp/test_tir_usmp_utils.py other failed cases: tests/python/tir-transform/test_tir_transform_pointer_value_type_rewrite.py::TestRewriteToShuffle::test_compare tests/python/tir-transform/test_tir_transform_force_narrow_index_to_i32.py::test_thread_axis2 tests/python/tir-transform/test_tir_transform_hoist_if.py::test_hoisting_block_scope_4 tests/python/tir-transform/test_transform_default_gpu_schedule.py::test_add_on_metal
When using OpenCL + Graph Executor + set_input_zero_copy, we found below code will raise exception, actually we know the NDArray is allocated by the OpenCL device API, it should satisfy...
After upgrade with the V0.15.0, we found the RPC have a bug, if the RPC server have some exception, we can't see the error message in RPC client like below....
In Arm China, we are migrating the old work to the newest code, recently the FFI refactor introduce lots of changes in very low level infrastructure, now only the `cython`...
https://github.com/apache/tvm/blob/299ef81f0f7e4bae93826141815dfc97c0ea0a42/src/runtime/relax_vm/vm.cc#L510-L531 https://github.com/apache/tvm/blob/299ef81f0f7e4bae93826141815dfc97c0ea0a42/src/runtime/relax_vm/vm.cc#L524 Why all of the arguments given to "SetInput" will be convert to the 1st device? Is it a typo? I think it should be something below. func_args[i] =...