tilelang-rocm 0.1.4.post5__cp310-cp310-manylinux1_x86_64.whl → 0.1.4.post9__cp310-cp310-manylinux1_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tilelang/3rdparty/tvm/python/tvm/_ffi/runtime_ctypes.py +7 -1
- tilelang/3rdparty/tvm/python/tvm/contrib/tvmjs.py +7 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/ndarray.py +8 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/ir.py +7 -0
- tilelang/3rdparty/tvm/src/target/llvm/codegen_llvm.cc +2 -1
- tilelang/3rdparty/tvm/src/target/source/codegen_cuda.cc +4 -1
- tilelang/3rdparty/tvm/src/target/source/ptx.cc +3 -0
- tilelang/3rdparty/tvm/src/tir/ir/index_map.cc +2 -1
- tilelang/3rdparty/tvm/src/tir/ir/stmt.cc +0 -6
- tilelang/3rdparty/tvm/src/tir/op/op.cc +6 -0
- tilelang/3rdparty/tvm/src/tir/transforms/dtype_conversion.h +3 -0
- tilelang/README.md +3 -1
- tilelang/VERSION +1 -1
- tilelang/__init__.py +2 -63
- tilelang/autotuner/__init__.py +334 -277
- tilelang/autotuner/param.py +329 -0
- tilelang/cache/kernel_cache.py +6 -11
- tilelang/cache/tuner_cache.py +356 -0
- tilelang/carver/arch/driver/__init__.py +2 -0
- tilelang/carver/arch/driver/cuda_driver.py +28 -0
- tilelang/contrib/dlpack.py +1 -1
- tilelang/contrib/nvcc.py +27 -3
- tilelang/engine/phase.py +44 -11
- tilelang/intrinsics/mfma_macro_generator.py +12 -3
- tilelang/intrinsics/mma_layout.py +33 -51
- tilelang/jit/__init__.py +215 -93
- tilelang/jit/adapter/cython/cython_wrapper.pyx +13 -10
- tilelang/jit/adapter/libgen.py +3 -1
- tilelang/jit/adapter/wrapper.py +91 -6
- tilelang/jit/kernel.py +52 -1
- tilelang/jit/param.py +45 -0
- tilelang/language/__init__.py +83 -1
- tilelang/language/builtin.py +90 -1
- tilelang/language/copy.py +13 -11
- tilelang/language/customize.py +13 -0
- tilelang/language/print.py +27 -0
- tilelang/language/reduce.py +16 -5
- tilelang/language/tir/op.py +19 -0
- tilelang/language/warpgroup.py +7 -2
- tilelang/lib/libtilelang.so +0 -0
- tilelang/lib/libtilelang_module.so +0 -0
- tilelang/lib/libtvm.so +0 -0
- tilelang/lib/libtvm_runtime.so +0 -0
- tilelang/primitives/gemm/base.py +61 -24
- tilelang/profiler/__init__.py +41 -2
- tilelang/quantize/__init__.py +18 -0
- tilelang/quantize/lop3.py +1202 -0
- tilelang/quantize/quantization.py +234 -0
- tilelang/quantize/utils.py +126 -0
- tilelang/src/tl_templates/cuda/common.h +23 -0
- tilelang/src/tl_templates/cuda/cuda_fp8.h +42 -13
- tilelang/src/tl_templates/cuda/debug.h +41 -3
- tilelang/src/tl_templates/cuda/gemm_sm80.h +25 -13
- tilelang/src/tl_templates/cuda/gemm_sm89.h +25 -14
- tilelang/src/tl_templates/cuda/gemm_sm90.h +28 -24
- tilelang/src/tl_templates/hip/hip_fp8.h +18 -0
- tilelang/transform/__init__.py +17 -0
- tilelang/transform/pass_config.py +3 -0
- tilelang/utils/tensor.py +1 -0
- tilelang/version.py +21 -0
- {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/METADATA +4 -2
- {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/RECORD +65 -1003
- {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/WHEEL +1 -1
- tilelang/3rdparty/tvm/python/tvm/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/__pycache__/error.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/__pycache__/parser.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/__pycache__/support.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/_pyversion.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/base.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/libinfo.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/registry.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/runtime_ctypes.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/ndarray.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/object.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/packed_func.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/types.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/_ffi/_cy3/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/analyzer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/bound.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/int_set.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/int_solver.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/iter_affine_map.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/pattern.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/compute_dag.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/dispatcher.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/feature.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/loop_state.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/measure.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/measure_record.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/relay_integration.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/search_policy.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/search_task.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/task_scheduler.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/workload_registry.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/cost_model/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/cost_model/__pycache__/cost_model.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/auto_scheduler/cost_model/__pycache__/xgb_model.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/env.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/feature.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/record.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/tophub.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/executor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/measure.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/measure_methods.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/code_hash.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/dispatcher.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/relay_integration.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/space.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/task.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/topi_integration.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/callback.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/droplet_tuner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/ga_tuner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/index_based_tuner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/metric.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/model_based_tuner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/sa_model_optimizer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/tuner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/xgboost_cost_model.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/xgboost_tuner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cblas.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/coreml_runtime.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cublas.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cudnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/dnnl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/download.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/graph_executor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/hipcc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/miopen.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/mkl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/mrvl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/ndk.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/nnpack.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/nvcc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/pickle_memoize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/popen_pool.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/rocblas.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/rocm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/sdaccel.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/stackvm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/tar.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/thrust.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/xcode.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/target/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/contrib/target/__pycache__/coreml.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/analysis.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/common_schedules.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/schedule_rule.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/base.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/fallback.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/gemv.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/general_reduction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/low_batch_gemv.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/matmul.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/reduction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/rmsnorm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/driver/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/driver/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/driver/__pycache__/build_module.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/_ffi_instrument_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/_ffi_transform_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/adt.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/affine_type.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/attrs.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/base.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/container.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/expr.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/function.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/global_info.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/instrument.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/json_compact.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/memory_pools.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/module.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/tensor_type.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/type.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/type_relation.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/diagnostics/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/ir/diagnostics/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/arg_info.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/extracted_task.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/logging.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/profiler.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/relax_integration.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/relay_integration.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/tir_integration.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/trace_apply.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/tune.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/tune_context.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/builder/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/builder/__pycache__/builder.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/builder/__pycache__/local_builder.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/cost_model.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/metric.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/random_model.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/xgb_model.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/json_database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/memory_database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/ordered_union_database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/schedule_fn_database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/union_database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/feature_extractor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/per_store_feature.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/random_feature_extractor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/add_to_database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/measure_callback.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/remove_build_artifact.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/update_cost_model.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_compute_location.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_parallel.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_thread_binding.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_tile_size.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_unroll.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutator.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/disallow_async_strided_mem_copy.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/disallow_dynamic_loop.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/postproc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_cooperative_fetch.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_layout.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_parallel_vectorize_unroll.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_reduction_block.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_tensorize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_unbound_block.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/verify_gpu_code.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/verify_vtcm_limit.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/config.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/local_runner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/rpc_runner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/runner.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/cpu/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/cuda/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/cuda/__pycache__/layout_transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/generic/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/x86/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/add_rfactor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/apply_custom_rule.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/auto_bind.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/auto_inline.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/cross_thread_reduction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/multi_level_tiling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/parallel_vectorize_unroll.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/random_compute_location.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/schedule_rule.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/evolutionary_search.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/replay_func.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/replay_trace.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/search_strategy.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/post_order_apply.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/schedule_fn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/space_generator.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/space_generator_union.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/gradient_based.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/round_robin.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/task_scheduler.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/binding_rewrite.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/block_builder.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/exec_builder.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/expr.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/expr_functor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/pipeline.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/struct_info.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/ty.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/vm_build.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/estimate_memory_usage.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/dispatch_sort_scan.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/pattern_registry.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/backend/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/global_info.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/struct_info.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/distributed/transform/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/distributed/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/distributed/transform/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/_ffi.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/context.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/pattern.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/rewrite.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/__pycache__/common.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/_tensor_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/core.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/exporter.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/extern.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/modules.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/spec.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/subroutine.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/visitor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/_op_gradient.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/base.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/binary.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/create.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/datatype.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/index.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/linear_algebra.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/manipulate.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/mask.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/op_attrs.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/qdq.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/search.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/set.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/sorting.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/statistical.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/ternary.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/unary.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/builtin/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/builtin/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/builtin/__pycache__/builtin.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/ccl/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/ccl/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/ccl/__pycache__/ccl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/distributed/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/distributed/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/distributed/__pycache__/distributed.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/grad/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/grad/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/grad/__pycache__/grad.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/image/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/image/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/image/__pycache__/image.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/memory/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/memory/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/memory/__pycache__/memory.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/nn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/nn/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/op/nn/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/loss.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/optimizer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/setup_trainer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/trainer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/attach_external_modules.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/fast_math.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/ipc_allreduce_rewrite.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/lazy_transform_params.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/lower_gpu_ipc_alloc_storage.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/optimize_layout_transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/remove_redundant_reshape.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/binary.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/ccl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/common.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/create.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/datatype.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/distributed.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/grad.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/image.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/index.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/inspect_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/linear_algebra.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/manipulate.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/qdq.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/search.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/statistical.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/unary.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/database.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/default_functions.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/primitives.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_build_module.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_ffi_api_parser.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/adt.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/base.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/build_module.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/debug.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/expr.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/expr_functor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/function.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/loops.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/param_dict.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/parser.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/prelude.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/scope_builder.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/ty.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/type_functor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/annotated_regions.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/call_graph.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/count_layers.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/feature.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/sparse_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/sparse_dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/_backend.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/_vm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/executor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/executor_factory.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/interpreter.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/runtime.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/te_compiler.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/vm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/collage/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/collage/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/collage/__pycache__/collage.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/bsr_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/bsr_dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/simplify_fc_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/dataflow_pattern/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/dataflow_pattern/__pycache__/_ffi.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/caffe.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/caffe2.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/change_datatype.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/common.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/coreml.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/darknet.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/keras.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/mxnet.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/mxnet_qnn_op_utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/nnvm_common.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/oneflow.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/onnx.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/paddlepaddle.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/pytorch.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/pytorch_utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/qnn_torch.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tensorflow.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tensorflow_ops.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tflite.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tflite_flexbuffer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_algorithm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_math.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_reduce.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_tensor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_tensor_grad.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/algorithm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/op_attrs.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/reduce.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/tensor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/annotation/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/annotation/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/annotation/__pycache__/annotation.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/_ethosn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/arm_compute_lib.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/bnns.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/clml.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/coreml.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/cutlass.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/dnnl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/ethosn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/libtorch.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/mrvl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/register.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/tensorrt.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_algorithm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_tensor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/image/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/image/__pycache__/_image.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/image/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/nn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/nn/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/nn/__pycache__/_nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/_image.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/image.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/memory/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/memory/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/memory/__pycache__/memory.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/_nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/_kernel.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/kernel.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/adreno.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/arm_cpu.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/bifrost.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/cuda.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/generic.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/hexagon.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/hls.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/intel_graphics.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/mali.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/rocm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/x86.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_rcnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_vision.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_yolo.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/multibox.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/nms.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/rcnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/yolo.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vm/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vm/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/op/vm/__pycache__/vm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/_make.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/_qnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/_requantize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/canonicalizations.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/layout_conversions.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/legalizations.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/qnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/arm_cpu.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/generic.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/hexagon.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_annotate.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_calibrate.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_partition.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_partition_conversions.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_quantize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/kl_divergence.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/quantize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/fake_quantization_to_integer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/flexible_shape.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/memory_plan.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/mixed_precision.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/recast.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/base.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/client.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/minrpc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/server.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/testing.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/_ffi_node_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/container.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/module.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/name_transforms.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/ndarray.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/object.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/object_generic.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/object_path.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/packed_func.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/params.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/relax_vm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/script_printer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/support.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/vm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/process_pool.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/session.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/executor/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/executor/__pycache__/aot_executor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/profiling/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/runtime/profiling/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/__pycache__/tir.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/__pycache__/base.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/frame.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/ir.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/frame.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/ir.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/__pycache__/_core.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/diagnostics.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/dispatch.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/doc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/doc_core.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/entry.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/error.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/evaluator.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/parser.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/ir/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/ir/__pycache__/entry.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/ir/__pycache__/parser.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/entry.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/operation.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/parser.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/codegen.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/compilation_config.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/datatype.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/generic_func.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/tag.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/target.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/virtual_device.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/target/__pycache__/x86.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/autodiff.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/operation.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/schedule.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/tag.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/tensor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/calls.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/module.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/parser.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/preprocessor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/runtime.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/block_dependence_info.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/block_scope.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/buffer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/data_layout.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/expr.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/function.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/generic.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/ir_builder.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/stmt.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/stmt_functor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/_type_checker.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/analysis.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/instruction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/schedule.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/state.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/trace.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/function_pass.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/transform/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/tir/usmp/transform/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/argwhere.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/broadcast.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/einsum.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/generic_op_impl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/math.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/reduction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/scan.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/scatter.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/scatter_elements.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/searchsorted.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/signal.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/sort.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/sparse_fill_empty_rows.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/sparse_reshape.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/tag.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/tensor.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/unique.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nchw.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nchw_winograd.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nhwc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nhwc_winograd.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_transpose_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_transpose_nchw.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_winograd_common.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/depthwise_conv2d_nchw.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/depthwise_conv2d_nhwc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/injective.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/pooling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/reduction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/arm_utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/bitserial_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/bitserial_dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv1d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_gemm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_int8.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_spatial_pack.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/group_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/injective.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/pooling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/qnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/qnn_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/qnn_legalize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/conv1d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/pool.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/avg_pool.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/common.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/gemm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/max_pool.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/multi_channel_convolve.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/tensordot.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/gemm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/transforms.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/cuda.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/generic.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/impl.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/rocm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/x86.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/vision/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cpp/vision/__pycache__/yolo.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/argwhere.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/batch_matmul.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/batch_matmul_tensorcore.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv1d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv1d_transpose_ncw.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_direct.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_hwcn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_hwnc_tensorcore.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_int8.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_nhwc_tensorcore.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_nhwc_winograd.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_winograd.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_direct.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_ndhwc_tensorcore.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_transpose_ncdhw.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_winograd.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/correlation.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/deformable_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/dense_tensorcore.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/group_conv2d_nchw.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/injective.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/nms.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/pooling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/reduction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/scan.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/scatter.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/scatter_elements.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/searchsorted.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/signal.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/softmax.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/sort.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/sparse.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/sparse_reshape.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/tensorcore_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/transform.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/unique.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/vision.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/rcnn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/rcnn/__pycache__/proposal.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/ssd/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/cuda/ssd/__pycache__/multibox.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/default.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/extern.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/image.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/injective.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/math.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/search.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/sort.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/vision.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/conv2d_nhwc.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/batch_matmul.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/compute_poolarea.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/dense_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/injective.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/pad.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/pooling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/reduce.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/resize2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/adaptive_avg_pool1d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/avg_pool2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/dense_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/dequantize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/global_avg_pool2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/qadd_qsub_qmul.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/qdense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/qdepthwise_conv2d_slice.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/quantize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hls/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hls/__pycache__/injective.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/hls/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/dilation2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/grid_sample.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/resize.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/batch_matmul.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/batch_norm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/batch_to_space_nd.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bitserial_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bitserial_dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bitserial_util.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv1d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv1d_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv3d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv3d_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/correlation.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/deformable_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/depth_to_space.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/dilate.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/elemwise.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/fifo_buffer.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/flatten.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/group_norm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/instance_norm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/layer_norm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/local_response_norm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/loss.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/lstm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/mapping.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/pad.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/pooling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/qnn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/rms_norm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/softmax.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/space_to_batch_nd.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/space_to_depth.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/sparse.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/upsampling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/utils.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/winograd_util.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/random/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/random/__pycache__/kernel.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/batch_matmul.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/csrmm.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/csrmv.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/nms.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/nms_util.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/reorg.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/proposal.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/roi_align.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/roi_pool.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/ssd/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/vision/ssd/__pycache__/multibox.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/__init__.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/batch_matmul.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/binarize_pack.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/binary_dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/bitserial_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/bitserial_dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/concat.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv1d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_avx_1x1.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_avx_common.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_int8.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv3d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv3d_transpose.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/dense.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/dense_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/group_conv2d.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/injective.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/math_alter_op.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/nn.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/pooling.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/reduction.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/roi_align.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/sparse.cpython-310.pyc +0 -0
- tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
- {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/licenses/LICENSE +0 -0
- {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,356 @@
|
|
1
|
+
# Copyright (c) Tile-AI Corporation.
|
2
|
+
# Licensed under the MIT License.
|
3
|
+
"""The cache utils with class and database persistence - KernelCache Class"""
|
4
|
+
|
5
|
+
import os
|
6
|
+
import json
|
7
|
+
import shutil
|
8
|
+
from pathlib import Path
|
9
|
+
from hashlib import sha256
|
10
|
+
from typing import Callable, List, Literal, Union, Optional
|
11
|
+
from tvm.target import Target
|
12
|
+
from tvm.tir import PrimFunc
|
13
|
+
from tilelang.jit import JITKernel
|
14
|
+
from tilelang.engine.param import KernelParam
|
15
|
+
import threading
|
16
|
+
import cloudpickle
|
17
|
+
import logging
|
18
|
+
|
19
|
+
from tilelang.env import TILELANG_CACHE_DIR, is_cache_enabled
|
20
|
+
from tilelang.version import __version__
|
21
|
+
|
22
|
+
KERNEL_PATH = "kernel.cu"
|
23
|
+
WRAPPED_KERNEL_PATH = "wrapped_kernel.cu"
|
24
|
+
KERNEL_LIB_PATH = "kernel_lib.so"
|
25
|
+
PARAMS_PATH = "params.pkl"
|
26
|
+
|
27
|
+
|
28
|
+
class AutoTunerCache:
|
29
|
+
"""
|
30
|
+
Caches compiled kernels using a class and database persistence to avoid redundant compilation.
|
31
|
+
Cache files:
|
32
|
+
kernel.cu: The compiled kernel source code
|
33
|
+
wrapped_kernel.cu: The compiled wrapped kernel source code
|
34
|
+
kernel_lib.so: The compiled kernel library
|
35
|
+
params.pkl: The compiled kernel parameters
|
36
|
+
"""
|
37
|
+
|
38
|
+
_instance = None # For implementing singleton pattern
|
39
|
+
_lock = threading.Lock() # For thread safety
|
40
|
+
_memory_cache = {} # In-memory cache dictionary
|
41
|
+
|
42
|
+
cache_dir: Path = Path(TILELANG_CACHE_DIR)
|
43
|
+
|
44
|
+
def __new__(cls, cache_dir=TILELANG_CACHE_DIR):
|
45
|
+
"""
|
46
|
+
Implements singleton pattern for KernelCache class.
|
47
|
+
|
48
|
+
Args:
|
49
|
+
cache_dir (str): Directory path for storing kernel cache. Defaults to TILELANG_CACHE_DIR.
|
50
|
+
|
51
|
+
Returns:
|
52
|
+
KernelCache: The singleton instance of KernelCache.
|
53
|
+
"""
|
54
|
+
if cls._instance is None:
|
55
|
+
with cls._lock:
|
56
|
+
if cls._instance is None: # Double-checked locking
|
57
|
+
instance = super().__new__(cls)
|
58
|
+
instance.cache_dir = Path(cache_dir)
|
59
|
+
os.makedirs(instance.cache_dir, exist_ok=True)
|
60
|
+
|
61
|
+
instance.logger = logging.getLogger(__name__)
|
62
|
+
instance.logger.setLevel(logging.ERROR)
|
63
|
+
instance._memory_cache = {} # Initialize memory cache
|
64
|
+
cls._instance = instance
|
65
|
+
return cls._instance
|
66
|
+
|
67
|
+
def _generate_key(
|
68
|
+
self,
|
69
|
+
func: Callable,
|
70
|
+
out_idx: List[int],
|
71
|
+
execution_backend: Literal["dlpack", "ctypes", "cython"] = "cython",
|
72
|
+
args=None,
|
73
|
+
target: Union[str, Target] = "auto",
|
74
|
+
target_host: Union[str, Target] = None,
|
75
|
+
pass_configs: dict = None,
|
76
|
+
) -> str:
|
77
|
+
"""
|
78
|
+
Generates a unique hash key for caching compiled kernels.
|
79
|
+
|
80
|
+
Args:
|
81
|
+
func (Callable): The function to be compiled.
|
82
|
+
out_idx (List[int]): Indices specifying which outputs to return.
|
83
|
+
execution_backend (Literal): Backend type for execution. Defaults to "cython".
|
84
|
+
args: Arguments passed to the function.
|
85
|
+
target (Union[str, Target]): Compilation target platform. Defaults to "auto".
|
86
|
+
target_host (Union[str, Target], optional): Host target platform.
|
87
|
+
|
88
|
+
Returns:
|
89
|
+
str: SHA256 hash key for the kernel configuration.
|
90
|
+
"""
|
91
|
+
func_binary = cloudpickle.dumps(func.script())
|
92
|
+
key_data = {
|
93
|
+
"version": __version__,
|
94
|
+
"func": sha256(func_binary).hexdigest(), # Use SHA256 to generate hash key
|
95
|
+
"out_idx": (tuple(out_idx) if isinstance(out_idx, (list, tuple)) else [out_idx]),
|
96
|
+
"args_repr": tuple(
|
97
|
+
repr(arg) for arg in args
|
98
|
+
), # Use repr to serialize arguments, may need more robust serialization
|
99
|
+
"target": str(target),
|
100
|
+
"target_host": str(target_host) if target_host else None,
|
101
|
+
"execution_backend": execution_backend,
|
102
|
+
"pass_configs": pass_configs,
|
103
|
+
}
|
104
|
+
key_string = json.dumps(key_data, sort_keys=True) # Sort keys to ensure consistency
|
105
|
+
return sha256(key_string.encode()).hexdigest() # Use SHA256 to generate hash key
|
106
|
+
|
107
|
+
def cached(
|
108
|
+
self,
|
109
|
+
func: PrimFunc = None,
|
110
|
+
out_idx: List[int] = None,
|
111
|
+
*args,
|
112
|
+
target: Union[str, Target] = "auto",
|
113
|
+
target_host: Union[str, Target] = None,
|
114
|
+
execution_backend: Literal["dlpack", "ctypes", "cython"] = "cython",
|
115
|
+
verbose: bool = False,
|
116
|
+
pass_configs: dict = None,
|
117
|
+
) -> JITKernel:
|
118
|
+
"""
|
119
|
+
Caches and reuses compiled kernels to avoid redundant compilation.
|
120
|
+
|
121
|
+
Args:
|
122
|
+
func: Function to be compiled or a prepared PrimFunc
|
123
|
+
out_idx: Indices specifying which outputs to return
|
124
|
+
target: Compilation target platform
|
125
|
+
target_host: Host target platform
|
126
|
+
*args: Arguments passed to func
|
127
|
+
|
128
|
+
Returns:
|
129
|
+
JITKernel: The compiled kernel, either freshly compiled or from cache
|
130
|
+
"""
|
131
|
+
if not is_cache_enabled():
|
132
|
+
return JITKernel(
|
133
|
+
func,
|
134
|
+
out_idx=out_idx,
|
135
|
+
execution_backend=execution_backend,
|
136
|
+
target=target,
|
137
|
+
target_host=target_host,
|
138
|
+
verbose=verbose,
|
139
|
+
pass_configs=pass_configs,
|
140
|
+
)
|
141
|
+
|
142
|
+
key = self._generate_key(
|
143
|
+
func=func,
|
144
|
+
out_idx=out_idx,
|
145
|
+
execution_backend=execution_backend,
|
146
|
+
args=args,
|
147
|
+
target=target,
|
148
|
+
target_host=target_host,
|
149
|
+
pass_configs=pass_configs,
|
150
|
+
)
|
151
|
+
with self._lock:
|
152
|
+
# First check in-memory cache
|
153
|
+
if key in self._memory_cache:
|
154
|
+
self.logger.warning("Found kernel in memory cache. For better performance," \
|
155
|
+
" consider using `@tilelang.jit` instead of direct kernel caching.")
|
156
|
+
return self._memory_cache[key]
|
157
|
+
|
158
|
+
# Then check disk cache
|
159
|
+
kernel = self._load_kernel_from_disk(key, target, target_host, out_idx,
|
160
|
+
execution_backend, pass_configs, func)
|
161
|
+
if kernel is not None:
|
162
|
+
# Populate memory cache with disk result
|
163
|
+
self._memory_cache[key] = kernel
|
164
|
+
return kernel
|
165
|
+
|
166
|
+
# Compile kernel if cache miss; leave critical section
|
167
|
+
kernel = JITKernel(
|
168
|
+
func,
|
169
|
+
out_idx=out_idx,
|
170
|
+
execution_backend=execution_backend,
|
171
|
+
target=target,
|
172
|
+
target_host=target_host,
|
173
|
+
verbose=verbose,
|
174
|
+
pass_configs=pass_configs,
|
175
|
+
)
|
176
|
+
if execution_backend == "dlpack":
|
177
|
+
self.logger.warning("DLPack backend does not support cache saving to disk.")
|
178
|
+
else:
|
179
|
+
with self._lock: # enter critical section again to check and update disk cache
|
180
|
+
disk_kernel = self._load_kernel_from_disk(
|
181
|
+
key,
|
182
|
+
target,
|
183
|
+
target_host,
|
184
|
+
out_idx,
|
185
|
+
execution_backend,
|
186
|
+
pass_configs,
|
187
|
+
func,
|
188
|
+
)
|
189
|
+
if disk_kernel is None:
|
190
|
+
self._save_kernel_to_disk(key, kernel, func)
|
191
|
+
|
192
|
+
# Store in memory cache after compilation
|
193
|
+
self._memory_cache[key] = kernel
|
194
|
+
return kernel
|
195
|
+
|
196
|
+
def set_cache_dir(self, cache_dir: str):
|
197
|
+
"""
|
198
|
+
Sets the cache directory for the kernel cache.
|
199
|
+
"""
|
200
|
+
self.cache_dir = Path(cache_dir)
|
201
|
+
|
202
|
+
def get_cache_dir(self) -> Path:
|
203
|
+
"""
|
204
|
+
Gets the cache directory for the kernel cache.
|
205
|
+
"""
|
206
|
+
return self.cache_dir
|
207
|
+
|
208
|
+
def clear_cache(self):
|
209
|
+
"""
|
210
|
+
Clears the entire kernel cache, including both in-memory and disk cache.
|
211
|
+
"""
|
212
|
+
with self._lock:
|
213
|
+
self._memory_cache.clear() # Clear in-memory cache
|
214
|
+
self._clear_disk_cache() # Clear disk cache
|
215
|
+
|
216
|
+
def _get_cache_path(self, key: str) -> str:
|
217
|
+
"""
|
218
|
+
Gets the filesystem path for a cached kernel.
|
219
|
+
|
220
|
+
Args:
|
221
|
+
key (str): The hash key identifying the kernel.
|
222
|
+
|
223
|
+
Returns:
|
224
|
+
str: Absolute path to the cache directory for this kernel.
|
225
|
+
"""
|
226
|
+
return os.path.join(self.cache_dir, key)
|
227
|
+
|
228
|
+
def _save_kernel_to_disk(self, key: str, kernel: JITKernel, func: Callable = None):
|
229
|
+
"""
|
230
|
+
Persists a compiled kernel to disk cache.
|
231
|
+
|
232
|
+
Args:
|
233
|
+
key (str): The hash key identifying the kernel.
|
234
|
+
kernel (JITKernel): The compiled kernel to be saved.
|
235
|
+
func (Callable, optional): The original function.
|
236
|
+
|
237
|
+
Note:
|
238
|
+
Saves the following files:
|
239
|
+
- kernel.cu: The compiled kernel source code
|
240
|
+
- wrapped_kernel.cu: The wrapped kernel source code
|
241
|
+
- kernel_lib.so: The compiled kernel library
|
242
|
+
- params.pkl: The serialized kernel parameters
|
243
|
+
"""
|
244
|
+
cache_path = self._get_cache_path(key)
|
245
|
+
os.makedirs(cache_path, exist_ok=True) # Ensure directory exists
|
246
|
+
|
247
|
+
# Save kernel source code
|
248
|
+
try:
|
249
|
+
kernel_path = os.path.join(cache_path, KERNEL_PATH)
|
250
|
+
with open(kernel_path, "w") as f:
|
251
|
+
f.write(kernel.artifact.kernel_source)
|
252
|
+
except Exception as e:
|
253
|
+
self.logger.error(f"Error saving kernel source code to disk: {e}")
|
254
|
+
|
255
|
+
# Save wrapped kernel source code
|
256
|
+
try:
|
257
|
+
wrapped_kernel_path = os.path.join(cache_path, WRAPPED_KERNEL_PATH)
|
258
|
+
with open(wrapped_kernel_path, "w") as f:
|
259
|
+
f.write(kernel.adapter.get_kernel_source())
|
260
|
+
except Exception as e:
|
261
|
+
self.logger.error(f"Error saving wrapped kernel source code to disk: {e}")
|
262
|
+
|
263
|
+
# Save kernel library
|
264
|
+
try:
|
265
|
+
kernel_lib_path = os.path.join(cache_path, KERNEL_LIB_PATH)
|
266
|
+
src_lib_path = kernel.adapter.libpath
|
267
|
+
shutil.copy(src_lib_path, kernel_lib_path)
|
268
|
+
except Exception as e:
|
269
|
+
self.logger.error(f"Error saving kernel library to disk: {e}")
|
270
|
+
|
271
|
+
# Save kernel parameters
|
272
|
+
try:
|
273
|
+
params_path = os.path.join(cache_path, PARAMS_PATH)
|
274
|
+
with open(params_path, "wb") as f:
|
275
|
+
cloudpickle.dump(kernel.params, f)
|
276
|
+
except Exception as e:
|
277
|
+
self.logger.error(f"Error saving kernel parameters to disk: {e}")
|
278
|
+
|
279
|
+
def _load_kernel_from_disk(
|
280
|
+
self,
|
281
|
+
key: str,
|
282
|
+
target: Union[str, Target] = "auto",
|
283
|
+
target_host: Union[str, Target] = None,
|
284
|
+
out_idx: List[int] = None,
|
285
|
+
execution_backend: Literal["dlpack", "ctypes", "cython"] = "cython",
|
286
|
+
pass_configs: dict = None,
|
287
|
+
func: Callable = None,
|
288
|
+
) -> JITKernel:
|
289
|
+
"""
|
290
|
+
Loads a previously compiled kernel from disk cache.
|
291
|
+
|
292
|
+
Args:
|
293
|
+
key (str): The hash key identifying the kernel.
|
294
|
+
target (Union[str, Target]): Compilation target platform. Defaults to "auto".
|
295
|
+
target_host (Union[str, Target], optional): Host target platform.
|
296
|
+
out_idx (List[int], optional): Indices specifying which outputs to return.
|
297
|
+
execution_backend (Literal): Backend type for execution. Defaults to "cython".
|
298
|
+
pass_configs (dict, optional): Configuration for compiler passes.
|
299
|
+
func (Callable, optional): The original function.
|
300
|
+
|
301
|
+
Returns:
|
302
|
+
JITKernel: The loaded kernel if found, None otherwise.
|
303
|
+
"""
|
304
|
+
cache_path = self._get_cache_path(key)
|
305
|
+
if not os.path.exists(cache_path):
|
306
|
+
return None
|
307
|
+
|
308
|
+
kernel_global_source: Optional[str] = None
|
309
|
+
kernel_params: Optional[List[KernelParam]] = None
|
310
|
+
|
311
|
+
try:
|
312
|
+
wrapped_kernel_path = os.path.join(cache_path, WRAPPED_KERNEL_PATH)
|
313
|
+
with open(wrapped_kernel_path, "r") as f:
|
314
|
+
kernel_global_source = f.read()
|
315
|
+
except Exception as e:
|
316
|
+
self.logger.error(f"Error loading wrapped kernel source code from disk: {e}")
|
317
|
+
|
318
|
+
kernel_lib_path = os.path.join(cache_path, KERNEL_LIB_PATH)
|
319
|
+
|
320
|
+
# Load kernel parameters
|
321
|
+
try:
|
322
|
+
params_path = os.path.join(cache_path, PARAMS_PATH)
|
323
|
+
with open(params_path, "rb") as f:
|
324
|
+
kernel_params = cloudpickle.load(f)
|
325
|
+
except Exception as e:
|
326
|
+
self.logger.error(f"Error loading kernel parameters from disk: {e}")
|
327
|
+
|
328
|
+
if kernel_global_source and kernel_params:
|
329
|
+
return JITKernel.from_database(
|
330
|
+
func=func,
|
331
|
+
kernel_global_source=kernel_global_source,
|
332
|
+
kernel_lib_path=kernel_lib_path,
|
333
|
+
params=kernel_params,
|
334
|
+
target=target,
|
335
|
+
target_host=target_host,
|
336
|
+
out_idx=out_idx,
|
337
|
+
execution_backend=execution_backend,
|
338
|
+
pass_configs=pass_configs,
|
339
|
+
)
|
340
|
+
else:
|
341
|
+
return None
|
342
|
+
|
343
|
+
def _clear_disk_cache(self):
|
344
|
+
"""
|
345
|
+
Removes all cached kernels from disk.
|
346
|
+
|
347
|
+
Note:
|
348
|
+
This operation will delete the entire cache directory and recreate it empty.
|
349
|
+
Use with caution as this operation cannot be undone.
|
350
|
+
"""
|
351
|
+
try:
|
352
|
+
if os.path.exists(self.cache_dir):
|
353
|
+
shutil.rmtree(self.cache_dir) # Delete entire cache directory
|
354
|
+
os.makedirs(self.cache_dir, exist_ok=True) # Re-create cache directory
|
355
|
+
except Exception as e:
|
356
|
+
self.logger.error(f"Error clearing disk cache: {e}")
|
@@ -165,3 +165,31 @@ def get_max_dynamic_shared_size_bytes(device_id: int = 0, format: str = "bytes")
|
|
165
165
|
raise RuntimeError("Invalid format. Must be one of: bytes, kb, mb")
|
166
166
|
else:
|
167
167
|
raise RuntimeError("Failed to get device properties.")
|
168
|
+
|
169
|
+
|
170
|
+
def get_persisting_l2_cache_max_size(device_id: int = 0) -> int:
|
171
|
+
prop = get_cuda_device_properties(device_id)
|
172
|
+
if prop:
|
173
|
+
return prop.persistingL2CacheMaxSize
|
174
|
+
else:
|
175
|
+
raise RuntimeError("Failed to get device properties for persisting L2 cache max size.")
|
176
|
+
|
177
|
+
|
178
|
+
def get_num_sms(device_id: int = 0) -> int:
|
179
|
+
"""
|
180
|
+
Get the number of streaming multiprocessors (SMs) on the CUDA device.
|
181
|
+
|
182
|
+
Args:
|
183
|
+
device_id (int, optional): The CUDA device ID. Defaults to 0.
|
184
|
+
|
185
|
+
Returns:
|
186
|
+
int: The number of SMs on the device.
|
187
|
+
|
188
|
+
Raises:
|
189
|
+
RuntimeError: If unable to get the device properties.
|
190
|
+
"""
|
191
|
+
prop = get_cuda_device_properties(device_id)
|
192
|
+
if prop:
|
193
|
+
return prop.multiProcessorCount
|
194
|
+
else:
|
195
|
+
raise RuntimeError("Failed to get device properties.")
|
tilelang/contrib/dlpack.py
CHANGED
@@ -38,7 +38,7 @@ def convert_func(tvm_func, tensor_type, to_dlpack_func):
|
|
38
38
|
|
39
39
|
float8_dtype_map = {
|
40
40
|
torch.float8_e4m3fn: "e4m3_float8",
|
41
|
-
torch.float8_e4m3fnuz: "
|
41
|
+
torch.float8_e4m3fnuz: "float8_e4m3fnuz",
|
42
42
|
torch.float8_e5m2: "e5m2_float8",
|
43
43
|
torch.float8_e5m2fnuz: "e5m2_float8",
|
44
44
|
}
|
tilelang/contrib/nvcc.py
CHANGED
@@ -270,7 +270,7 @@ def get_target_compute_version(target=None):
|
|
270
270
|
Returns
|
271
271
|
-------
|
272
272
|
compute_version : str
|
273
|
-
compute capability of a GPU (e.g. "8.6")
|
273
|
+
compute capability of a GPU (e.g. "8.6" or "9.0")
|
274
274
|
"""
|
275
275
|
# 1. input target object
|
276
276
|
# 2. Target.current()
|
@@ -279,10 +279,17 @@ def get_target_compute_version(target=None):
|
|
279
279
|
arch = target.arch.split("_")[1]
|
280
280
|
if len(arch) == 2:
|
281
281
|
major, minor = arch
|
282
|
+
# Handle old format like sm_89
|
282
283
|
return major + "." + minor
|
283
284
|
elif len(arch) == 3:
|
284
|
-
|
285
|
-
major
|
285
|
+
major = int(arch[0])
|
286
|
+
if major < 2:
|
287
|
+
major = arch[0:2]
|
288
|
+
minor = arch[2]
|
289
|
+
return major + "." + minor
|
290
|
+
else:
|
291
|
+
# This is for arch like "sm_90a"
|
292
|
+
major, minor, suffix = arch
|
286
293
|
return major + "." + minor + "." + suffix
|
287
294
|
|
288
295
|
# 3. GPU compute version
|
@@ -416,6 +423,23 @@ def have_fp8(compute_version):
|
|
416
423
|
return any(conditions)
|
417
424
|
|
418
425
|
|
426
|
+
@tvm._ffi.register_func("tvm.contrib.nvcc.supports_tma", override=True)
|
427
|
+
def have_tma(target):
|
428
|
+
"""Whether TMA support is provided in the specified compute capability or not
|
429
|
+
|
430
|
+
Parameters
|
431
|
+
----------
|
432
|
+
target : tvm.target.Target
|
433
|
+
The compilation target
|
434
|
+
"""
|
435
|
+
compute_version = get_target_compute_version(target)
|
436
|
+
major, minor = parse_compute_version(compute_version)
|
437
|
+
# TMA is supported in Ada Lovelace (9.0) or later architectures.
|
438
|
+
conditions = [False]
|
439
|
+
conditions.append(major >= 9)
|
440
|
+
return any(conditions)
|
441
|
+
|
442
|
+
|
419
443
|
def get_nvcc_compiler() -> str:
|
420
444
|
"""Get the path to the nvcc compiler"""
|
421
445
|
return os.path.join(find_cuda_path(), "bin", "nvcc")
|
tilelang/engine/phase.py
CHANGED
@@ -4,23 +4,41 @@ from tvm import tir, IRModule
|
|
4
4
|
from tvm.target import Target
|
5
5
|
import tilelang
|
6
6
|
from tilelang.transform import PassContext
|
7
|
+
from tilelang.contrib.nvcc import have_tma
|
7
8
|
from typing import Optional
|
8
9
|
|
9
10
|
|
11
|
+
def allow_warp_specialized(pass_ctx: Optional[PassContext] = None,
|
12
|
+
target: Optional[Target] = None) -> bool:
|
13
|
+
# avoid circular import
|
14
|
+
from tilelang.jit.adapter.utils import is_cuda_target
|
15
|
+
|
16
|
+
if pass_ctx is None:
|
17
|
+
pass_ctx = tilelang.transform.get_pass_context()
|
18
|
+
if not is_cuda_target(target):
|
19
|
+
return False
|
20
|
+
disable_warp_specialized = pass_ctx.config.get("tl.disable_warp_specialized", False)
|
21
|
+
return not disable_warp_specialized
|
22
|
+
|
23
|
+
|
10
24
|
def allow_tma_and_warp_specialized(pass_ctx: Optional[PassContext] = None,
|
11
25
|
target: Optional[Target] = None) -> bool:
|
26
|
+
# avoid circular import
|
27
|
+
from tilelang.jit.adapter.utils import is_cuda_target
|
28
|
+
|
12
29
|
if pass_ctx is None:
|
13
30
|
pass_ctx = tilelang.transform.get_pass_context()
|
14
|
-
if target
|
31
|
+
if not is_cuda_target(target) or not have_tma(target):
|
15
32
|
return False
|
16
33
|
disable_tma_lower = pass_ctx.config.get("tl.disable_tma_lower", False)
|
17
|
-
disable_tma_lower
|
18
|
-
disable_warp_specialized = pass_ctx.config.get("tl.disable_warp_specialized", False)
|
19
|
-
return not (disable_tma_lower and disable_warp_specialized)
|
34
|
+
return not disable_tma_lower and allow_warp_specialized(pass_ctx=pass_ctx, target=target)
|
20
35
|
|
21
36
|
|
22
37
|
def allow_fence_proxy(target: Optional[Target] = None) -> bool:
|
23
|
-
|
38
|
+
# avoid circular import
|
39
|
+
from tilelang.jit.adapter.utils import is_cuda_target
|
40
|
+
|
41
|
+
return is_cuda_target(target) and have_tma(target)
|
24
42
|
|
25
43
|
|
26
44
|
def allow_vectorize(pass_ctx: Optional[PassContext] = None) -> bool:
|
@@ -42,6 +60,8 @@ def LowerAndLegalize(mod: IRModule, target: Target) -> IRModule:
|
|
42
60
|
mod = tilelang.transform.LayoutInference()(mod)
|
43
61
|
# Lower high-level tile operations to low-level operations
|
44
62
|
mod = tilelang.transform.LowerTileOp()(mod)
|
63
|
+
# Lower l2 persistent map
|
64
|
+
mod = tilelang.transform.LowerL2Persistent()(mod)
|
45
65
|
# Legalize vectorized loops to ensure they are valid
|
46
66
|
mod = tilelang.transform.LegalizeVectorizedLoop()(mod)
|
47
67
|
# Add safety checks for memory accesses
|
@@ -86,12 +106,12 @@ def OptimizeForTarget(mod: IRModule, target: Target) -> IRModule:
|
|
86
106
|
mod = tilelang.transform.InjectFenceProxy()(mod)
|
87
107
|
|
88
108
|
mod = tir.transform.LowerOpaqueBlock()(mod)
|
89
|
-
mod = tilelang.transform.FlattenBuffer()(mod)
|
90
109
|
mod = tir.transform.NarrowDataType(32)(mod)
|
110
|
+
mod = tilelang.transform.ConfigIndexBitwidth()(mod)
|
111
|
+
mod = tilelang.transform.FlattenBuffer()(mod)
|
91
112
|
mod = tir.transform.Simplify()(mod)
|
92
113
|
|
93
114
|
mod = tilelang.transform.VectorizeLoop(enable_vectorize=allow_vectorize(pass_ctx=pass_ctx))(mod)
|
94
|
-
|
95
115
|
mod = tir.transform.StorageRewrite()(mod)
|
96
116
|
mod = tir.transform.UnrollLoop()(mod)
|
97
117
|
mod = tir.transform.RenormalizeSplitPattern()(mod)
|
@@ -115,15 +135,28 @@ def OptimizeForTarget(mod: IRModule, target: Target) -> IRModule:
|
|
115
135
|
mod = tir.transform.InferFragment()(mod)
|
116
136
|
mod = tir.transform.LowerThreadAllreduce()(mod)
|
117
137
|
mod = tilelang.transform.LowerHopperIntrin()(mod)
|
118
|
-
|
138
|
+
|
139
|
+
# Global Barrier Synchronization must be applied before
|
140
|
+
# SplitHostDevice pass, as the global barrier
|
141
|
+
mod = tilelang.transform.ThreadSync("global")(mod)
|
142
|
+
mod = tilelang.transform.AnnotateDeviceRegions()(mod)
|
143
|
+
mod = tir.transform.SplitHostDevice()(mod)
|
144
|
+
|
145
|
+
if allow_warp_specialized(pass_ctx=pass_ctx, target=target):
|
146
|
+
# This is a workaround to avoid the bug in the MergeSharedMemoryAllocations pass
|
147
|
+
# when warp specialization is enabled, as different warp threads may access different
|
148
|
+
# buffers, but the liveness analysis is hard because we need to do pipeline.
|
149
|
+
mod = tir.transform.MergeSharedMemoryAllocations()(mod)
|
150
|
+
else:
|
151
|
+
mod = tilelang.transform.MergeSharedMemoryAllocations()(mod)
|
152
|
+
|
119
153
|
mod = tilelang.transform.ThreadSync("shared")(mod)
|
120
154
|
mod = tilelang.transform.ThreadSync("shared.dyn")(mod)
|
121
155
|
mod = tilelang.transform.EliminateStorageSyncForMBarrier()(mod)
|
156
|
+
# Inject PTX async copy must behind the thread sync pass
|
157
|
+
# as ptx async copy won't be recognized as a valid buffer load
|
122
158
|
mod = tilelang.transform.InjectPTXAsyncCopy()(mod)
|
123
159
|
|
124
|
-
mod = tilelang.transform.AnnotateDeviceRegions()(mod)
|
125
|
-
mod = tir.transform.SplitHostDevice()(mod)
|
126
|
-
mod = tir.transform.MergeSharedMemoryAllocations()(mod)
|
127
160
|
mod = tilelang.transform.MakePackedAPI()(mod)
|
128
161
|
mod = tir.transform.LowerDeviceKernelLaunch()(mod)
|
129
162
|
|
@@ -30,6 +30,7 @@ class MatrixCoreIntrinEmitter(object):
|
|
30
30
|
"int32": "int32",
|
31
31
|
"e4m3_float8": "e4m3",
|
32
32
|
"e5m2_float8": "e5m2",
|
33
|
+
"float8_e4m3fnuz": "e4m3fnuz",
|
33
34
|
}
|
34
35
|
|
35
36
|
# k_pack represents the number of elements in a vectorized instruction
|
@@ -83,10 +84,14 @@ class MatrixCoreIntrinEmitter(object):
|
|
83
84
|
|
84
85
|
def _initialize_k_dim(self, a_dtype="float16"):
|
85
86
|
if isinstance(a_dtype, str):
|
87
|
+
if a_dtype in ["float8_e4m3fnuz"]:
|
88
|
+
self.k_dim = 32
|
89
|
+
return
|
86
90
|
a_dtype = DataType(a_dtype)
|
91
|
+
|
87
92
|
if a_dtype.bits == 32:
|
88
93
|
self.k_dim = 4
|
89
|
-
elif a_dtype.bits in
|
94
|
+
elif a_dtype.bits in {16, 8}:
|
90
95
|
self.k_dim = 16
|
91
96
|
else:
|
92
97
|
raise ValueError(f"Unsupported a_dtype = {a_dtype}")
|
@@ -115,10 +120,14 @@ class MatrixCoreIntrinEmitter(object):
|
|
115
120
|
"float16": "f16",
|
116
121
|
"float32": "f32",
|
117
122
|
"int8": "i8",
|
118
|
-
"int32": "i32"
|
123
|
+
"int32": "i32",
|
124
|
+
"float8_e4m3fnuz": "fp8",
|
119
125
|
}[in_dtype]
|
120
126
|
|
121
|
-
|
127
|
+
if in_dtype_abbrv == "fp8":
|
128
|
+
self.mfma_suffix = f"{out_dtype_abbrv}_{M_DIM}x{N_DIM}x{k_dim}_fp8_fp8"
|
129
|
+
else:
|
130
|
+
self.mfma_suffix = f"{out_dtype_abbrv}_{M_DIM}x{N_DIM}x{k_dim}{in_dtype_abbrv}"
|
122
131
|
|
123
132
|
def _initialize_micro_size(self, m_dim=16, n_dim=16, k_dim=16):
|
124
133
|
self.micro_size_x = m_dim
|