This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git
from 814f5501bf [TIR][Schedule] Transform layout quality of life (#11269)
add d519b03c53 [rust][ci] Disable rust nn tests (#11420)
add 8135860527 [BYOC] Enable bfloat16 in DNNL BYOC (#11111)
add f6ddd52dc0 [microNPU] Expose compute cycle annotations to TIR lowering
(#11288)
No new revisions were added by this update.
Summary of changes:
cmake/modules/contrib/DNNL.cmake | 4 +-
include/tvm/tir/op.h | 24 +-
.../tvm/contrib/ethosu/cascader/plan_generator.py | 24 +-
python/tvm/contrib/ethosu/cascader/scheduler.py | 18 +-
.../relay/backend/contrib/ethosu/tir/scheduler.py | 7 +
python/tvm/relay/op/contrib/dnnl.py | 25 +-
src/contrib/ethosu/cascader/plan_generator.cc | 64 +-
src/relay/backend/contrib/dnnl/query_layout.cc | 33 +-
src/runtime/contrib/dnnl/dnnl_json_runtime.cc | 656 +++++++++++++++++----
.../runtime/contrib/dnnl/dnnl_utils.cc | 38 +-
.../runtime/contrib/dnnl/dnnl_utils.h | 24 +-
src/tir/contrib/ethosu/passes.cc | 9 +-
src/tir/ir/data_layout.cc | 12 +-
tests/python/contrib/test_dnnl.py | 76 ++-
.../test_ethosu/cascader/test_integration.py | 145 +++++
.../contrib/test_ethosu/cascader/test_scheduler.py | 85 ++-
tests/scripts/task_rust.sh | 9 +-
17 files changed, 1004 insertions(+), 249 deletions(-)
copy include/tvm/runtime/contrib/libtorch_runtime.h =>
src/runtime/contrib/dnnl/dnnl_utils.cc (51%)
copy include/tvm/runtime/contrib/libtorch_runtime.h =>
src/runtime/contrib/dnnl/dnnl_utils.h (66%)
create mode 100644
tests/python/contrib/test_ethosu/cascader/test_integration.py