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.
Files changed (1011) hide show
  1. tilelang/3rdparty/tvm/python/tvm/_ffi/runtime_ctypes.py +7 -1
  2. tilelang/3rdparty/tvm/python/tvm/contrib/tvmjs.py +7 -0
  3. tilelang/3rdparty/tvm/python/tvm/runtime/ndarray.py +8 -0
  4. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/ir.py +7 -0
  5. tilelang/3rdparty/tvm/src/target/llvm/codegen_llvm.cc +2 -1
  6. tilelang/3rdparty/tvm/src/target/source/codegen_cuda.cc +4 -1
  7. tilelang/3rdparty/tvm/src/target/source/ptx.cc +3 -0
  8. tilelang/3rdparty/tvm/src/tir/ir/index_map.cc +2 -1
  9. tilelang/3rdparty/tvm/src/tir/ir/stmt.cc +0 -6
  10. tilelang/3rdparty/tvm/src/tir/op/op.cc +6 -0
  11. tilelang/3rdparty/tvm/src/tir/transforms/dtype_conversion.h +3 -0
  12. tilelang/README.md +3 -1
  13. tilelang/VERSION +1 -1
  14. tilelang/__init__.py +2 -63
  15. tilelang/autotuner/__init__.py +334 -277
  16. tilelang/autotuner/param.py +329 -0
  17. tilelang/cache/kernel_cache.py +6 -11
  18. tilelang/cache/tuner_cache.py +356 -0
  19. tilelang/carver/arch/driver/__init__.py +2 -0
  20. tilelang/carver/arch/driver/cuda_driver.py +28 -0
  21. tilelang/contrib/dlpack.py +1 -1
  22. tilelang/contrib/nvcc.py +27 -3
  23. tilelang/engine/phase.py +44 -11
  24. tilelang/intrinsics/mfma_macro_generator.py +12 -3
  25. tilelang/intrinsics/mma_layout.py +33 -51
  26. tilelang/jit/__init__.py +215 -93
  27. tilelang/jit/adapter/cython/cython_wrapper.pyx +13 -10
  28. tilelang/jit/adapter/libgen.py +3 -1
  29. tilelang/jit/adapter/wrapper.py +91 -6
  30. tilelang/jit/kernel.py +52 -1
  31. tilelang/jit/param.py +45 -0
  32. tilelang/language/__init__.py +83 -1
  33. tilelang/language/builtin.py +90 -1
  34. tilelang/language/copy.py +13 -11
  35. tilelang/language/customize.py +13 -0
  36. tilelang/language/print.py +27 -0
  37. tilelang/language/reduce.py +16 -5
  38. tilelang/language/tir/op.py +19 -0
  39. tilelang/language/warpgroup.py +7 -2
  40. tilelang/lib/libtilelang.so +0 -0
  41. tilelang/lib/libtilelang_module.so +0 -0
  42. tilelang/lib/libtvm.so +0 -0
  43. tilelang/lib/libtvm_runtime.so +0 -0
  44. tilelang/primitives/gemm/base.py +61 -24
  45. tilelang/profiler/__init__.py +41 -2
  46. tilelang/quantize/__init__.py +18 -0
  47. tilelang/quantize/lop3.py +1202 -0
  48. tilelang/quantize/quantization.py +234 -0
  49. tilelang/quantize/utils.py +126 -0
  50. tilelang/src/tl_templates/cuda/common.h +23 -0
  51. tilelang/src/tl_templates/cuda/cuda_fp8.h +42 -13
  52. tilelang/src/tl_templates/cuda/debug.h +41 -3
  53. tilelang/src/tl_templates/cuda/gemm_sm80.h +25 -13
  54. tilelang/src/tl_templates/cuda/gemm_sm89.h +25 -14
  55. tilelang/src/tl_templates/cuda/gemm_sm90.h +28 -24
  56. tilelang/src/tl_templates/hip/hip_fp8.h +18 -0
  57. tilelang/transform/__init__.py +17 -0
  58. tilelang/transform/pass_config.py +3 -0
  59. tilelang/utils/tensor.py +1 -0
  60. tilelang/version.py +21 -0
  61. {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/METADATA +4 -2
  62. {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/RECORD +65 -1003
  63. {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/WHEEL +1 -1
  64. tilelang/3rdparty/tvm/python/tvm/__pycache__/__init__.cpython-310.pyc +0 -0
  65. tilelang/3rdparty/tvm/python/tvm/__pycache__/error.cpython-310.pyc +0 -0
  66. tilelang/3rdparty/tvm/python/tvm/__pycache__/parser.cpython-310.pyc +0 -0
  67. tilelang/3rdparty/tvm/python/tvm/__pycache__/support.cpython-310.pyc +0 -0
  68. tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/__init__.cpython-310.pyc +0 -0
  69. tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/_pyversion.cpython-310.pyc +0 -0
  70. tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/base.cpython-310.pyc +0 -0
  71. tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/libinfo.cpython-310.pyc +0 -0
  72. tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/registry.cpython-310.pyc +0 -0
  73. tilelang/3rdparty/tvm/python/tvm/_ffi/__pycache__/runtime_ctypes.cpython-310.pyc +0 -0
  74. tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/__init__.cpython-310.pyc +0 -0
  75. tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/ndarray.cpython-310.pyc +0 -0
  76. tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/object.cpython-310.pyc +0 -0
  77. tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/packed_func.cpython-310.pyc +0 -0
  78. tilelang/3rdparty/tvm/python/tvm/_ffi/_ctypes/__pycache__/types.cpython-310.pyc +0 -0
  79. tilelang/3rdparty/tvm/python/tvm/_ffi/_cy3/__pycache__/__init__.cpython-310.pyc +0 -0
  80. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/__init__.cpython-310.pyc +0 -0
  81. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  82. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/analyzer.cpython-310.pyc +0 -0
  83. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/bound.cpython-310.pyc +0 -0
  84. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/int_set.cpython-310.pyc +0 -0
  85. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/int_solver.cpython-310.pyc +0 -0
  86. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/iter_affine_map.cpython-310.pyc +0 -0
  87. tilelang/3rdparty/tvm/python/tvm/arith/__pycache__/pattern.cpython-310.pyc +0 -0
  88. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/__init__.cpython-310.pyc +0 -0
  89. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  90. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/compute_dag.cpython-310.pyc +0 -0
  91. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/dispatcher.cpython-310.pyc +0 -0
  92. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/feature.cpython-310.pyc +0 -0
  93. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/loop_state.cpython-310.pyc +0 -0
  94. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/measure.cpython-310.pyc +0 -0
  95. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/measure_record.cpython-310.pyc +0 -0
  96. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/relay_integration.cpython-310.pyc +0 -0
  97. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/search_policy.cpython-310.pyc +0 -0
  98. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/search_task.cpython-310.pyc +0 -0
  99. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/task_scheduler.cpython-310.pyc +0 -0
  100. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/utils.cpython-310.pyc +0 -0
  101. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/__pycache__/workload_registry.cpython-310.pyc +0 -0
  102. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/cost_model/__pycache__/__init__.cpython-310.pyc +0 -0
  103. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/cost_model/__pycache__/cost_model.cpython-310.pyc +0 -0
  104. tilelang/3rdparty/tvm/python/tvm/auto_scheduler/cost_model/__pycache__/xgb_model.cpython-310.pyc +0 -0
  105. tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/__init__.cpython-310.pyc +0 -0
  106. tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/database.cpython-310.pyc +0 -0
  107. tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/env.cpython-310.pyc +0 -0
  108. tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/feature.cpython-310.pyc +0 -0
  109. tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/record.cpython-310.pyc +0 -0
  110. tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/tophub.cpython-310.pyc +0 -0
  111. tilelang/3rdparty/tvm/python/tvm/autotvm/__pycache__/utils.cpython-310.pyc +0 -0
  112. tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/__init__.cpython-310.pyc +0 -0
  113. tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/executor.cpython-310.pyc +0 -0
  114. tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/measure.cpython-310.pyc +0 -0
  115. tilelang/3rdparty/tvm/python/tvm/autotvm/measure/__pycache__/measure_methods.cpython-310.pyc +0 -0
  116. tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/__init__.cpython-310.pyc +0 -0
  117. tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/code_hash.cpython-310.pyc +0 -0
  118. tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/dispatcher.cpython-310.pyc +0 -0
  119. tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/relay_integration.cpython-310.pyc +0 -0
  120. tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/space.cpython-310.pyc +0 -0
  121. tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/task.cpython-310.pyc +0 -0
  122. tilelang/3rdparty/tvm/python/tvm/autotvm/task/__pycache__/topi_integration.cpython-310.pyc +0 -0
  123. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/__init__.cpython-310.pyc +0 -0
  124. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/callback.cpython-310.pyc +0 -0
  125. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/droplet_tuner.cpython-310.pyc +0 -0
  126. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/ga_tuner.cpython-310.pyc +0 -0
  127. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/index_based_tuner.cpython-310.pyc +0 -0
  128. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/metric.cpython-310.pyc +0 -0
  129. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/model_based_tuner.cpython-310.pyc +0 -0
  130. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/sa_model_optimizer.cpython-310.pyc +0 -0
  131. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/tuner.cpython-310.pyc +0 -0
  132. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/xgboost_cost_model.cpython-310.pyc +0 -0
  133. tilelang/3rdparty/tvm/python/tvm/autotvm/tuner/__pycache__/xgboost_tuner.cpython-310.pyc +0 -0
  134. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
  135. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cblas.cpython-310.pyc +0 -0
  136. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cc.cpython-310.pyc +0 -0
  137. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/coreml_runtime.cpython-310.pyc +0 -0
  138. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cublas.cpython-310.pyc +0 -0
  139. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/cudnn.cpython-310.pyc +0 -0
  140. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/dnnl.cpython-310.pyc +0 -0
  141. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/download.cpython-310.pyc +0 -0
  142. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/graph_executor.cpython-310.pyc +0 -0
  143. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/hipcc.cpython-310.pyc +0 -0
  144. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/miopen.cpython-310.pyc +0 -0
  145. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/mkl.cpython-310.pyc +0 -0
  146. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/mrvl.cpython-310.pyc +0 -0
  147. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/ndk.cpython-310.pyc +0 -0
  148. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/nnpack.cpython-310.pyc +0 -0
  149. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/nvcc.cpython-310.pyc +0 -0
  150. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/pickle_memoize.cpython-310.pyc +0 -0
  151. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/popen_pool.cpython-310.pyc +0 -0
  152. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/rocblas.cpython-310.pyc +0 -0
  153. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/rocm.cpython-310.pyc +0 -0
  154. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/sdaccel.cpython-310.pyc +0 -0
  155. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/stackvm.cpython-310.pyc +0 -0
  156. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/tar.cpython-310.pyc +0 -0
  157. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/thrust.cpython-310.pyc +0 -0
  158. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/utils.cpython-310.pyc +0 -0
  159. tilelang/3rdparty/tvm/python/tvm/contrib/__pycache__/xcode.cpython-310.pyc +0 -0
  160. tilelang/3rdparty/tvm/python/tvm/contrib/target/__pycache__/__init__.cpython-310.pyc +0 -0
  161. tilelang/3rdparty/tvm/python/tvm/contrib/target/__pycache__/coreml.cpython-310.pyc +0 -0
  162. tilelang/3rdparty/tvm/python/tvm/dlight/__pycache__/__init__.cpython-310.pyc +0 -0
  163. tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/__init__.cpython-310.pyc +0 -0
  164. tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/analysis.cpython-310.pyc +0 -0
  165. tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/common_schedules.cpython-310.pyc +0 -0
  166. tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/schedule_rule.cpython-310.pyc +0 -0
  167. tilelang/3rdparty/tvm/python/tvm/dlight/base/__pycache__/transform.cpython-310.pyc +0 -0
  168. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/__init__.cpython-310.pyc +0 -0
  169. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/base.cpython-310.pyc +0 -0
  170. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/fallback.cpython-310.pyc +0 -0
  171. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/gemv.cpython-310.pyc +0 -0
  172. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/general_reduction.cpython-310.pyc +0 -0
  173. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/low_batch_gemv.cpython-310.pyc +0 -0
  174. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/matmul.cpython-310.pyc +0 -0
  175. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/reduction.cpython-310.pyc +0 -0
  176. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/rmsnorm.cpython-310.pyc +0 -0
  177. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/transpose.cpython-310.pyc +0 -0
  178. tilelang/3rdparty/tvm/python/tvm/dlight/gpu/__pycache__/utils.cpython-310.pyc +0 -0
  179. tilelang/3rdparty/tvm/python/tvm/driver/__pycache__/__init__.cpython-310.pyc +0 -0
  180. tilelang/3rdparty/tvm/python/tvm/driver/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  181. tilelang/3rdparty/tvm/python/tvm/driver/__pycache__/build_module.cpython-310.pyc +0 -0
  182. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/__init__.cpython-310.pyc +0 -0
  183. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  184. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/_ffi_instrument_api.cpython-310.pyc +0 -0
  185. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/_ffi_transform_api.cpython-310.pyc +0 -0
  186. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/adt.cpython-310.pyc +0 -0
  187. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/affine_type.cpython-310.pyc +0 -0
  188. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/attrs.cpython-310.pyc +0 -0
  189. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/base.cpython-310.pyc +0 -0
  190. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/container.cpython-310.pyc +0 -0
  191. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/expr.cpython-310.pyc +0 -0
  192. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/function.cpython-310.pyc +0 -0
  193. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/global_info.cpython-310.pyc +0 -0
  194. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/instrument.cpython-310.pyc +0 -0
  195. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/json_compact.cpython-310.pyc +0 -0
  196. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/memory_pools.cpython-310.pyc +0 -0
  197. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/module.cpython-310.pyc +0 -0
  198. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/op.cpython-310.pyc +0 -0
  199. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/tensor_type.cpython-310.pyc +0 -0
  200. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/transform.cpython-310.pyc +0 -0
  201. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/type.cpython-310.pyc +0 -0
  202. tilelang/3rdparty/tvm/python/tvm/ir/__pycache__/type_relation.cpython-310.pyc +0 -0
  203. tilelang/3rdparty/tvm/python/tvm/ir/diagnostics/__pycache__/__init__.cpython-310.pyc +0 -0
  204. tilelang/3rdparty/tvm/python/tvm/ir/diagnostics/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  205. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/__init__.cpython-310.pyc +0 -0
  206. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  207. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/arg_info.cpython-310.pyc +0 -0
  208. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/extracted_task.cpython-310.pyc +0 -0
  209. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/logging.cpython-310.pyc +0 -0
  210. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/profiler.cpython-310.pyc +0 -0
  211. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/relax_integration.cpython-310.pyc +0 -0
  212. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/relay_integration.cpython-310.pyc +0 -0
  213. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/tir_integration.cpython-310.pyc +0 -0
  214. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/trace_apply.cpython-310.pyc +0 -0
  215. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/tune.cpython-310.pyc +0 -0
  216. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/tune_context.cpython-310.pyc +0 -0
  217. tilelang/3rdparty/tvm/python/tvm/meta_schedule/__pycache__/utils.cpython-310.pyc +0 -0
  218. tilelang/3rdparty/tvm/python/tvm/meta_schedule/builder/__pycache__/__init__.cpython-310.pyc +0 -0
  219. tilelang/3rdparty/tvm/python/tvm/meta_schedule/builder/__pycache__/builder.cpython-310.pyc +0 -0
  220. tilelang/3rdparty/tvm/python/tvm/meta_schedule/builder/__pycache__/local_builder.cpython-310.pyc +0 -0
  221. tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/__init__.cpython-310.pyc +0 -0
  222. tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/cost_model.cpython-310.pyc +0 -0
  223. tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/metric.cpython-310.pyc +0 -0
  224. tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/random_model.cpython-310.pyc +0 -0
  225. tilelang/3rdparty/tvm/python/tvm/meta_schedule/cost_model/__pycache__/xgb_model.cpython-310.pyc +0 -0
  226. tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/__init__.cpython-310.pyc +0 -0
  227. tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/database.cpython-310.pyc +0 -0
  228. tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/json_database.cpython-310.pyc +0 -0
  229. tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/memory_database.cpython-310.pyc +0 -0
  230. tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/ordered_union_database.cpython-310.pyc +0 -0
  231. tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/schedule_fn_database.cpython-310.pyc +0 -0
  232. tilelang/3rdparty/tvm/python/tvm/meta_schedule/database/__pycache__/union_database.cpython-310.pyc +0 -0
  233. tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/__init__.cpython-310.pyc +0 -0
  234. tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/feature_extractor.cpython-310.pyc +0 -0
  235. tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/per_store_feature.cpython-310.pyc +0 -0
  236. tilelang/3rdparty/tvm/python/tvm/meta_schedule/feature_extractor/__pycache__/random_feature_extractor.cpython-310.pyc +0 -0
  237. tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/__init__.cpython-310.pyc +0 -0
  238. tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/add_to_database.cpython-310.pyc +0 -0
  239. tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/measure_callback.cpython-310.pyc +0 -0
  240. tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/remove_build_artifact.cpython-310.pyc +0 -0
  241. tilelang/3rdparty/tvm/python/tvm/meta_schedule/measure_callback/__pycache__/update_cost_model.cpython-310.pyc +0 -0
  242. tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/__init__.cpython-310.pyc +0 -0
  243. tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_compute_location.cpython-310.pyc +0 -0
  244. tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_parallel.cpython-310.pyc +0 -0
  245. tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_thread_binding.cpython-310.pyc +0 -0
  246. tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_tile_size.cpython-310.pyc +0 -0
  247. tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutate_unroll.cpython-310.pyc +0 -0
  248. tilelang/3rdparty/tvm/python/tvm/meta_schedule/mutator/__pycache__/mutator.cpython-310.pyc +0 -0
  249. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/__init__.cpython-310.pyc +0 -0
  250. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/disallow_async_strided_mem_copy.cpython-310.pyc +0 -0
  251. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/disallow_dynamic_loop.cpython-310.pyc +0 -0
  252. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/postproc.cpython-310.pyc +0 -0
  253. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_cooperative_fetch.cpython-310.pyc +0 -0
  254. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_layout.cpython-310.pyc +0 -0
  255. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_parallel_vectorize_unroll.cpython-310.pyc +0 -0
  256. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_reduction_block.cpython-310.pyc +0 -0
  257. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_tensorize.cpython-310.pyc +0 -0
  258. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/rewrite_unbound_block.cpython-310.pyc +0 -0
  259. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/verify_gpu_code.cpython-310.pyc +0 -0
  260. tilelang/3rdparty/tvm/python/tvm/meta_schedule/postproc/__pycache__/verify_vtcm_limit.cpython-310.pyc +0 -0
  261. tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/__init__.cpython-310.pyc +0 -0
  262. tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/config.cpython-310.pyc +0 -0
  263. tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/local_runner.cpython-310.pyc +0 -0
  264. tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/rpc_runner.cpython-310.pyc +0 -0
  265. tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/runner.cpython-310.pyc +0 -0
  266. tilelang/3rdparty/tvm/python/tvm/meta_schedule/runner/__pycache__/utils.cpython-310.pyc +0 -0
  267. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/__pycache__/__init__.cpython-310.pyc +0 -0
  268. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/cpu/__pycache__/__init__.cpython-310.pyc +0 -0
  269. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/cuda/__pycache__/__init__.cpython-310.pyc +0 -0
  270. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/cuda/__pycache__/layout_transform.cpython-310.pyc +0 -0
  271. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/generic/__pycache__/__init__.cpython-310.pyc +0 -0
  272. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule/x86/__pycache__/__init__.cpython-310.pyc +0 -0
  273. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/__init__.cpython-310.pyc +0 -0
  274. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/add_rfactor.cpython-310.pyc +0 -0
  275. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/apply_custom_rule.cpython-310.pyc +0 -0
  276. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/auto_bind.cpython-310.pyc +0 -0
  277. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/auto_inline.cpython-310.pyc +0 -0
  278. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/cross_thread_reduction.cpython-310.pyc +0 -0
  279. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/multi_level_tiling.cpython-310.pyc +0 -0
  280. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/parallel_vectorize_unroll.cpython-310.pyc +0 -0
  281. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/random_compute_location.cpython-310.pyc +0 -0
  282. tilelang/3rdparty/tvm/python/tvm/meta_schedule/schedule_rule/__pycache__/schedule_rule.cpython-310.pyc +0 -0
  283. tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/__init__.cpython-310.pyc +0 -0
  284. tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/evolutionary_search.cpython-310.pyc +0 -0
  285. tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/replay_func.cpython-310.pyc +0 -0
  286. tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/replay_trace.cpython-310.pyc +0 -0
  287. tilelang/3rdparty/tvm/python/tvm/meta_schedule/search_strategy/__pycache__/search_strategy.cpython-310.pyc +0 -0
  288. tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/__init__.cpython-310.pyc +0 -0
  289. tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/post_order_apply.cpython-310.pyc +0 -0
  290. tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/schedule_fn.cpython-310.pyc +0 -0
  291. tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/space_generator.cpython-310.pyc +0 -0
  292. tilelang/3rdparty/tvm/python/tvm/meta_schedule/space_generator/__pycache__/space_generator_union.cpython-310.pyc +0 -0
  293. tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/__init__.cpython-310.pyc +0 -0
  294. tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/gradient_based.cpython-310.pyc +0 -0
  295. tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/round_robin.cpython-310.pyc +0 -0
  296. tilelang/3rdparty/tvm/python/tvm/meta_schedule/task_scheduler/__pycache__/task_scheduler.cpython-310.pyc +0 -0
  297. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/__init__.cpython-310.pyc +0 -0
  298. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  299. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/binding_rewrite.cpython-310.pyc +0 -0
  300. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/block_builder.cpython-310.pyc +0 -0
  301. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/exec_builder.cpython-310.pyc +0 -0
  302. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/expr.cpython-310.pyc +0 -0
  303. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/expr_functor.cpython-310.pyc +0 -0
  304. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/pipeline.cpython-310.pyc +0 -0
  305. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/struct_info.cpython-310.pyc +0 -0
  306. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/ty.cpython-310.pyc +0 -0
  307. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/utils.cpython-310.pyc +0 -0
  308. tilelang/3rdparty/tvm/python/tvm/relax/__pycache__/vm_build.cpython-310.pyc +0 -0
  309. tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
  310. tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  311. tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
  312. tilelang/3rdparty/tvm/python/tvm/relax/analysis/__pycache__/estimate_memory_usage.cpython-310.pyc +0 -0
  313. tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/__init__.cpython-310.pyc +0 -0
  314. tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  315. tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/dispatch_sort_scan.cpython-310.pyc +0 -0
  316. tilelang/3rdparty/tvm/python/tvm/relax/backend/__pycache__/pattern_registry.cpython-310.pyc +0 -0
  317. tilelang/3rdparty/tvm/python/tvm/relax/backend/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
  318. tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/__init__.cpython-310.pyc +0 -0
  319. tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  320. tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/global_info.cpython-310.pyc +0 -0
  321. tilelang/3rdparty/tvm/python/tvm/relax/distributed/__pycache__/struct_info.cpython-310.pyc +0 -0
  322. tilelang/3rdparty/tvm/python/tvm/relax/distributed/transform/__pycache__/__init__.cpython-310.pyc +0 -0
  323. tilelang/3rdparty/tvm/python/tvm/relax/distributed/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  324. tilelang/3rdparty/tvm/python/tvm/relax/distributed/transform/__pycache__/transform.cpython-310.pyc +0 -0
  325. tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/__init__.cpython-310.pyc +0 -0
  326. tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/_ffi.cpython-310.pyc +0 -0
  327. tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/context.cpython-310.pyc +0 -0
  328. tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/pattern.cpython-310.pyc +0 -0
  329. tilelang/3rdparty/tvm/python/tvm/relax/dpl/__pycache__/rewrite.cpython-310.pyc +0 -0
  330. tilelang/3rdparty/tvm/python/tvm/relax/frontend/__pycache__/__init__.cpython-310.pyc +0 -0
  331. tilelang/3rdparty/tvm/python/tvm/relax/frontend/__pycache__/common.cpython-310.pyc +0 -0
  332. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/__init__.cpython-310.pyc +0 -0
  333. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/_tensor_op.cpython-310.pyc +0 -0
  334. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/core.cpython-310.pyc +0 -0
  335. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/exporter.cpython-310.pyc +0 -0
  336. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/extern.cpython-310.pyc +0 -0
  337. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/modules.cpython-310.pyc +0 -0
  338. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/op.cpython-310.pyc +0 -0
  339. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/spec.cpython-310.pyc +0 -0
  340. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/subroutine.cpython-310.pyc +0 -0
  341. tilelang/3rdparty/tvm/python/tvm/relax/frontend/nn/__pycache__/visitor.cpython-310.pyc +0 -0
  342. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/__init__.cpython-310.pyc +0 -0
  343. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  344. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/_op_gradient.cpython-310.pyc +0 -0
  345. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/base.cpython-310.pyc +0 -0
  346. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/binary.cpython-310.pyc +0 -0
  347. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/create.cpython-310.pyc +0 -0
  348. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/datatype.cpython-310.pyc +0 -0
  349. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/index.cpython-310.pyc +0 -0
  350. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/linear_algebra.cpython-310.pyc +0 -0
  351. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/manipulate.cpython-310.pyc +0 -0
  352. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/mask.cpython-310.pyc +0 -0
  353. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/op_attrs.cpython-310.pyc +0 -0
  354. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/qdq.cpython-310.pyc +0 -0
  355. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/search.cpython-310.pyc +0 -0
  356. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/set.cpython-310.pyc +0 -0
  357. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/sorting.cpython-310.pyc +0 -0
  358. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/statistical.cpython-310.pyc +0 -0
  359. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/ternary.cpython-310.pyc +0 -0
  360. tilelang/3rdparty/tvm/python/tvm/relax/op/__pycache__/unary.cpython-310.pyc +0 -0
  361. tilelang/3rdparty/tvm/python/tvm/relax/op/builtin/__pycache__/__init__.cpython-310.pyc +0 -0
  362. tilelang/3rdparty/tvm/python/tvm/relax/op/builtin/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  363. tilelang/3rdparty/tvm/python/tvm/relax/op/builtin/__pycache__/builtin.cpython-310.pyc +0 -0
  364. tilelang/3rdparty/tvm/python/tvm/relax/op/ccl/__pycache__/__init__.cpython-310.pyc +0 -0
  365. tilelang/3rdparty/tvm/python/tvm/relax/op/ccl/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  366. tilelang/3rdparty/tvm/python/tvm/relax/op/ccl/__pycache__/ccl.cpython-310.pyc +0 -0
  367. tilelang/3rdparty/tvm/python/tvm/relax/op/distributed/__pycache__/__init__.cpython-310.pyc +0 -0
  368. tilelang/3rdparty/tvm/python/tvm/relax/op/distributed/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  369. tilelang/3rdparty/tvm/python/tvm/relax/op/distributed/__pycache__/distributed.cpython-310.pyc +0 -0
  370. tilelang/3rdparty/tvm/python/tvm/relax/op/grad/__pycache__/__init__.cpython-310.pyc +0 -0
  371. tilelang/3rdparty/tvm/python/tvm/relax/op/grad/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  372. tilelang/3rdparty/tvm/python/tvm/relax/op/grad/__pycache__/grad.cpython-310.pyc +0 -0
  373. tilelang/3rdparty/tvm/python/tvm/relax/op/image/__pycache__/__init__.cpython-310.pyc +0 -0
  374. tilelang/3rdparty/tvm/python/tvm/relax/op/image/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  375. tilelang/3rdparty/tvm/python/tvm/relax/op/image/__pycache__/image.cpython-310.pyc +0 -0
  376. tilelang/3rdparty/tvm/python/tvm/relax/op/memory/__pycache__/__init__.cpython-310.pyc +0 -0
  377. tilelang/3rdparty/tvm/python/tvm/relax/op/memory/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  378. tilelang/3rdparty/tvm/python/tvm/relax/op/memory/__pycache__/memory.cpython-310.pyc +0 -0
  379. tilelang/3rdparty/tvm/python/tvm/relax/op/nn/__pycache__/__init__.cpython-310.pyc +0 -0
  380. tilelang/3rdparty/tvm/python/tvm/relax/op/nn/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  381. tilelang/3rdparty/tvm/python/tvm/relax/op/nn/__pycache__/nn.cpython-310.pyc +0 -0
  382. tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/__init__.cpython-310.pyc +0 -0
  383. tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  384. tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/loss.cpython-310.pyc +0 -0
  385. tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/optimizer.cpython-310.pyc +0 -0
  386. tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/setup_trainer.cpython-310.pyc +0 -0
  387. tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/trainer.cpython-310.pyc +0 -0
  388. tilelang/3rdparty/tvm/python/tvm/relax/training/__pycache__/utils.cpython-310.pyc +0 -0
  389. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/__init__.cpython-310.pyc +0 -0
  390. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  391. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/attach_external_modules.cpython-310.pyc +0 -0
  392. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/fast_math.cpython-310.pyc +0 -0
  393. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/ipc_allreduce_rewrite.cpython-310.pyc +0 -0
  394. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/lazy_transform_params.cpython-310.pyc +0 -0
  395. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/lower_gpu_ipc_alloc_storage.cpython-310.pyc +0 -0
  396. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/optimize_layout_transform.cpython-310.pyc +0 -0
  397. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/remove_redundant_reshape.cpython-310.pyc +0 -0
  398. tilelang/3rdparty/tvm/python/tvm/relax/transform/__pycache__/transform.cpython-310.pyc +0 -0
  399. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/__init__.cpython-310.pyc +0 -0
  400. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/binary.cpython-310.pyc +0 -0
  401. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/ccl.cpython-310.pyc +0 -0
  402. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/common.cpython-310.pyc +0 -0
  403. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/create.cpython-310.pyc +0 -0
  404. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/datatype.cpython-310.pyc +0 -0
  405. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/distributed.cpython-310.pyc +0 -0
  406. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/grad.cpython-310.pyc +0 -0
  407. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/image.cpython-310.pyc +0 -0
  408. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/index.cpython-310.pyc +0 -0
  409. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/inspect_op.cpython-310.pyc +0 -0
  410. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/linear_algebra.cpython-310.pyc +0 -0
  411. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/manipulate.cpython-310.pyc +0 -0
  412. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/nn.cpython-310.pyc +0 -0
  413. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/qdq.cpython-310.pyc +0 -0
  414. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/search.cpython-310.pyc +0 -0
  415. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/statistical.cpython-310.pyc +0 -0
  416. tilelang/3rdparty/tvm/python/tvm/relax/transform/legalize_ops/__pycache__/unary.cpython-310.pyc +0 -0
  417. tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/__init__.cpython-310.pyc +0 -0
  418. tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  419. tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/database.cpython-310.pyc +0 -0
  420. tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/default_functions.cpython-310.pyc +0 -0
  421. tilelang/3rdparty/tvm/python/tvm/relax/transform/tuning_api/__pycache__/primitives.cpython-310.pyc +0 -0
  422. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/__init__.cpython-310.pyc +0 -0
  423. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_build_module.cpython-310.pyc +0 -0
  424. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  425. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_ffi_api_parser.cpython-310.pyc +0 -0
  426. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/_make.cpython-310.pyc +0 -0
  427. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/adt.cpython-310.pyc +0 -0
  428. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/base.cpython-310.pyc +0 -0
  429. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/build_module.cpython-310.pyc +0 -0
  430. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/debug.cpython-310.pyc +0 -0
  431. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/expr.cpython-310.pyc +0 -0
  432. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/expr_functor.cpython-310.pyc +0 -0
  433. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/function.cpython-310.pyc +0 -0
  434. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/loops.cpython-310.pyc +0 -0
  435. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/param_dict.cpython-310.pyc +0 -0
  436. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/parser.cpython-310.pyc +0 -0
  437. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/prelude.cpython-310.pyc +0 -0
  438. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/scope_builder.cpython-310.pyc +0 -0
  439. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/ty.cpython-310.pyc +0 -0
  440. tilelang/3rdparty/tvm/python/tvm/relay/__pycache__/type_functor.cpython-310.pyc +0 -0
  441. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
  442. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  443. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
  444. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/annotated_regions.cpython-310.pyc +0 -0
  445. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/call_graph.cpython-310.pyc +0 -0
  446. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/count_layers.cpython-310.pyc +0 -0
  447. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/feature.cpython-310.pyc +0 -0
  448. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/sparse_conv2d.cpython-310.pyc +0 -0
  449. tilelang/3rdparty/tvm/python/tvm/relay/analysis/__pycache__/sparse_dense.cpython-310.pyc +0 -0
  450. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/__init__.cpython-310.pyc +0 -0
  451. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/_backend.cpython-310.pyc +0 -0
  452. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/_vm.cpython-310.pyc +0 -0
  453. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/executor.cpython-310.pyc +0 -0
  454. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/executor_factory.cpython-310.pyc +0 -0
  455. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/interpreter.cpython-310.pyc +0 -0
  456. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/runtime.cpython-310.pyc +0 -0
  457. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/te_compiler.cpython-310.pyc +0 -0
  458. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/utils.cpython-310.pyc +0 -0
  459. tilelang/3rdparty/tvm/python/tvm/relay/backend/__pycache__/vm.cpython-310.pyc +0 -0
  460. tilelang/3rdparty/tvm/python/tvm/relay/collage/__pycache__/__init__.cpython-310.pyc +0 -0
  461. tilelang/3rdparty/tvm/python/tvm/relay/collage/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  462. tilelang/3rdparty/tvm/python/tvm/relay/collage/__pycache__/collage.cpython-310.pyc +0 -0
  463. tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/__init__.cpython-310.pyc +0 -0
  464. tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/bsr_conv2d.cpython-310.pyc +0 -0
  465. tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/bsr_dense.cpython-310.pyc +0 -0
  466. tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/simplify_fc_transpose.cpython-310.pyc +0 -0
  467. tilelang/3rdparty/tvm/python/tvm/relay/data_dep_optimization/__pycache__/utils.cpython-310.pyc +0 -0
  468. tilelang/3rdparty/tvm/python/tvm/relay/dataflow_pattern/__pycache__/__init__.cpython-310.pyc +0 -0
  469. tilelang/3rdparty/tvm/python/tvm/relay/dataflow_pattern/__pycache__/_ffi.cpython-310.pyc +0 -0
  470. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/__init__.cpython-310.pyc +0 -0
  471. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/caffe.cpython-310.pyc +0 -0
  472. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/caffe2.cpython-310.pyc +0 -0
  473. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/change_datatype.cpython-310.pyc +0 -0
  474. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/common.cpython-310.pyc +0 -0
  475. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/coreml.cpython-310.pyc +0 -0
  476. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/darknet.cpython-310.pyc +0 -0
  477. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/keras.cpython-310.pyc +0 -0
  478. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/mxnet.cpython-310.pyc +0 -0
  479. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/mxnet_qnn_op_utils.cpython-310.pyc +0 -0
  480. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/nnvm_common.cpython-310.pyc +0 -0
  481. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/oneflow.cpython-310.pyc +0 -0
  482. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/onnx.cpython-310.pyc +0 -0
  483. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/paddlepaddle.cpython-310.pyc +0 -0
  484. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/pytorch.cpython-310.pyc +0 -0
  485. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/pytorch_utils.cpython-310.pyc +0 -0
  486. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/qnn_torch.cpython-310.pyc +0 -0
  487. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tensorflow.cpython-310.pyc +0 -0
  488. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tensorflow_ops.cpython-310.pyc +0 -0
  489. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tflite.cpython-310.pyc +0 -0
  490. tilelang/3rdparty/tvm/python/tvm/relay/frontend/__pycache__/tflite_flexbuffer.cpython-310.pyc +0 -0
  491. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/__init__.cpython-310.pyc +0 -0
  492. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_algorithm.cpython-310.pyc +0 -0
  493. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_make.cpython-310.pyc +0 -0
  494. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_math.cpython-310.pyc +0 -0
  495. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_reduce.cpython-310.pyc +0 -0
  496. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_tensor.cpython-310.pyc +0 -0
  497. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_tensor_grad.cpython-310.pyc +0 -0
  498. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/_transform.cpython-310.pyc +0 -0
  499. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/algorithm.cpython-310.pyc +0 -0
  500. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/op.cpython-310.pyc +0 -0
  501. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/op_attrs.cpython-310.pyc +0 -0
  502. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/reduce.cpython-310.pyc +0 -0
  503. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/tensor.cpython-310.pyc +0 -0
  504. tilelang/3rdparty/tvm/python/tvm/relay/op/__pycache__/transform.cpython-310.pyc +0 -0
  505. tilelang/3rdparty/tvm/python/tvm/relay/op/annotation/__pycache__/__init__.cpython-310.pyc +0 -0
  506. tilelang/3rdparty/tvm/python/tvm/relay/op/annotation/__pycache__/_make.cpython-310.pyc +0 -0
  507. tilelang/3rdparty/tvm/python/tvm/relay/op/annotation/__pycache__/annotation.cpython-310.pyc +0 -0
  508. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/__init__.cpython-310.pyc +0 -0
  509. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/_ethosn.cpython-310.pyc +0 -0
  510. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/arm_compute_lib.cpython-310.pyc +0 -0
  511. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/bnns.cpython-310.pyc +0 -0
  512. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/clml.cpython-310.pyc +0 -0
  513. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/coreml.cpython-310.pyc +0 -0
  514. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/cutlass.cpython-310.pyc +0 -0
  515. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/dnnl.cpython-310.pyc +0 -0
  516. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/ethosn.cpython-310.pyc +0 -0
  517. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/libtorch.cpython-310.pyc +0 -0
  518. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/mrvl.cpython-310.pyc +0 -0
  519. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/register.cpython-310.pyc +0 -0
  520. tilelang/3rdparty/tvm/python/tvm/relay/op/contrib/__pycache__/tensorrt.cpython-310.pyc +0 -0
  521. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/__init__.cpython-310.pyc +0 -0
  522. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_algorithm.cpython-310.pyc +0 -0
  523. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_make.cpython-310.pyc +0 -0
  524. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_tensor.cpython-310.pyc +0 -0
  525. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/__pycache__/_transform.cpython-310.pyc +0 -0
  526. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/image/__pycache__/__init__.cpython-310.pyc +0 -0
  527. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/image/__pycache__/_image.cpython-310.pyc +0 -0
  528. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/image/__pycache__/_make.cpython-310.pyc +0 -0
  529. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/nn/__pycache__/__init__.cpython-310.pyc +0 -0
  530. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/nn/__pycache__/_make.cpython-310.pyc +0 -0
  531. tilelang/3rdparty/tvm/python/tvm/relay/op/dyn/nn/__pycache__/_nn.cpython-310.pyc +0 -0
  532. tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/__init__.cpython-310.pyc +0 -0
  533. tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/_image.cpython-310.pyc +0 -0
  534. tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/_make.cpython-310.pyc +0 -0
  535. tilelang/3rdparty/tvm/python/tvm/relay/op/image/__pycache__/image.cpython-310.pyc +0 -0
  536. tilelang/3rdparty/tvm/python/tvm/relay/op/memory/__pycache__/__init__.cpython-310.pyc +0 -0
  537. tilelang/3rdparty/tvm/python/tvm/relay/op/memory/__pycache__/_make.cpython-310.pyc +0 -0
  538. tilelang/3rdparty/tvm/python/tvm/relay/op/memory/__pycache__/memory.cpython-310.pyc +0 -0
  539. tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/__init__.cpython-310.pyc +0 -0
  540. tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/_make.cpython-310.pyc +0 -0
  541. tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/_nn.cpython-310.pyc +0 -0
  542. tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/nn.cpython-310.pyc +0 -0
  543. tilelang/3rdparty/tvm/python/tvm/relay/op/nn/__pycache__/utils.cpython-310.pyc +0 -0
  544. tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/__init__.cpython-310.pyc +0 -0
  545. tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/_kernel.cpython-310.pyc +0 -0
  546. tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/_make.cpython-310.pyc +0 -0
  547. tilelang/3rdparty/tvm/python/tvm/relay/op/random/__pycache__/kernel.cpython-310.pyc +0 -0
  548. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/__init__.cpython-310.pyc +0 -0
  549. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/adreno.cpython-310.pyc +0 -0
  550. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/arm_cpu.cpython-310.pyc +0 -0
  551. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/bifrost.cpython-310.pyc +0 -0
  552. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/cuda.cpython-310.pyc +0 -0
  553. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/generic.cpython-310.pyc +0 -0
  554. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/hexagon.cpython-310.pyc +0 -0
  555. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/hls.cpython-310.pyc +0 -0
  556. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/intel_graphics.cpython-310.pyc +0 -0
  557. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/mali.cpython-310.pyc +0 -0
  558. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/rocm.cpython-310.pyc +0 -0
  559. tilelang/3rdparty/tvm/python/tvm/relay/op/strategy/__pycache__/x86.cpython-310.pyc +0 -0
  560. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/__init__.cpython-310.pyc +0 -0
  561. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_make.cpython-310.pyc +0 -0
  562. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_rcnn.cpython-310.pyc +0 -0
  563. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_vision.cpython-310.pyc +0 -0
  564. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/_yolo.cpython-310.pyc +0 -0
  565. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/multibox.cpython-310.pyc +0 -0
  566. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/nms.cpython-310.pyc +0 -0
  567. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/rcnn.cpython-310.pyc +0 -0
  568. tilelang/3rdparty/tvm/python/tvm/relay/op/vision/__pycache__/yolo.cpython-310.pyc +0 -0
  569. tilelang/3rdparty/tvm/python/tvm/relay/op/vm/__pycache__/__init__.cpython-310.pyc +0 -0
  570. tilelang/3rdparty/tvm/python/tvm/relay/op/vm/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  571. tilelang/3rdparty/tvm/python/tvm/relay/op/vm/__pycache__/vm.cpython-310.pyc +0 -0
  572. tilelang/3rdparty/tvm/python/tvm/relay/qnn/__pycache__/__init__.cpython-310.pyc +0 -0
  573. tilelang/3rdparty/tvm/python/tvm/relay/qnn/__pycache__/transform.cpython-310.pyc +0 -0
  574. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/__init__.cpython-310.pyc +0 -0
  575. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/_make.cpython-310.pyc +0 -0
  576. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/_qnn.cpython-310.pyc +0 -0
  577. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/_requantize.cpython-310.pyc +0 -0
  578. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/canonicalizations.cpython-310.pyc +0 -0
  579. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/layout_conversions.cpython-310.pyc +0 -0
  580. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/legalizations.cpython-310.pyc +0 -0
  581. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/op.cpython-310.pyc +0 -0
  582. tilelang/3rdparty/tvm/python/tvm/relay/qnn/op/__pycache__/qnn.cpython-310.pyc +0 -0
  583. tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/__init__.cpython-310.pyc +0 -0
  584. tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/arm_cpu.cpython-310.pyc +0 -0
  585. tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/generic.cpython-310.pyc +0 -0
  586. tilelang/3rdparty/tvm/python/tvm/relay/qnn/strategy/__pycache__/hexagon.cpython-310.pyc +0 -0
  587. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/__init__.cpython-310.pyc +0 -0
  588. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_annotate.cpython-310.pyc +0 -0
  589. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_calibrate.cpython-310.pyc +0 -0
  590. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_partition.cpython-310.pyc +0 -0
  591. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_partition_conversions.cpython-310.pyc +0 -0
  592. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/_quantize.cpython-310.pyc +0 -0
  593. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/kl_divergence.cpython-310.pyc +0 -0
  594. tilelang/3rdparty/tvm/python/tvm/relay/quantize/__pycache__/quantize.cpython-310.pyc +0 -0
  595. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/__init__.cpython-310.pyc +0 -0
  596. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  597. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/fake_quantization_to_integer.cpython-310.pyc +0 -0
  598. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/flexible_shape.cpython-310.pyc +0 -0
  599. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/memory_plan.cpython-310.pyc +0 -0
  600. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/mixed_precision.cpython-310.pyc +0 -0
  601. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/recast.cpython-310.pyc +0 -0
  602. tilelang/3rdparty/tvm/python/tvm/relay/transform/__pycache__/transform.cpython-310.pyc +0 -0
  603. tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/__init__.cpython-310.pyc +0 -0
  604. tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  605. tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/base.cpython-310.pyc +0 -0
  606. tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/client.cpython-310.pyc +0 -0
  607. tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/minrpc.cpython-310.pyc +0 -0
  608. tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/server.cpython-310.pyc +0 -0
  609. tilelang/3rdparty/tvm/python/tvm/rpc/__pycache__/testing.cpython-310.pyc +0 -0
  610. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/__init__.cpython-310.pyc +0 -0
  611. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  612. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/_ffi_node_api.cpython-310.pyc +0 -0
  613. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/container.cpython-310.pyc +0 -0
  614. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/module.cpython-310.pyc +0 -0
  615. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/name_transforms.cpython-310.pyc +0 -0
  616. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/ndarray.cpython-310.pyc +0 -0
  617. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/object.cpython-310.pyc +0 -0
  618. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/object_generic.cpython-310.pyc +0 -0
  619. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/object_path.cpython-310.pyc +0 -0
  620. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/packed_func.cpython-310.pyc +0 -0
  621. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/params.cpython-310.pyc +0 -0
  622. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/relax_vm.cpython-310.pyc +0 -0
  623. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/script_printer.cpython-310.pyc +0 -0
  624. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/support.cpython-310.pyc +0 -0
  625. tilelang/3rdparty/tvm/python/tvm/runtime/__pycache__/vm.cpython-310.pyc +0 -0
  626. tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/__init__.cpython-310.pyc +0 -0
  627. tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  628. tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/process_pool.cpython-310.pyc +0 -0
  629. tilelang/3rdparty/tvm/python/tvm/runtime/disco/__pycache__/session.cpython-310.pyc +0 -0
  630. tilelang/3rdparty/tvm/python/tvm/runtime/executor/__pycache__/__init__.cpython-310.pyc +0 -0
  631. tilelang/3rdparty/tvm/python/tvm/runtime/executor/__pycache__/aot_executor.cpython-310.pyc +0 -0
  632. tilelang/3rdparty/tvm/python/tvm/runtime/profiling/__pycache__/__init__.cpython-310.pyc +0 -0
  633. tilelang/3rdparty/tvm/python/tvm/runtime/profiling/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  634. tilelang/3rdparty/tvm/python/tvm/script/__pycache__/__init__.cpython-310.pyc +0 -0
  635. tilelang/3rdparty/tvm/python/tvm/script/__pycache__/tir.cpython-310.pyc +0 -0
  636. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/__pycache__/__init__.cpython-310.pyc +0 -0
  637. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  638. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/__pycache__/base.cpython-310.pyc +0 -0
  639. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/__init__.cpython-310.pyc +0 -0
  640. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  641. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/frame.cpython-310.pyc +0 -0
  642. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/ir/__pycache__/ir.cpython-310.pyc +0 -0
  643. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/__init__.cpython-310.pyc +0 -0
  644. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  645. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/frame.cpython-310.pyc +0 -0
  646. tilelang/3rdparty/tvm/python/tvm/script/ir_builder/tir/__pycache__/ir.cpython-310.pyc +0 -0
  647. tilelang/3rdparty/tvm/python/tvm/script/parser/__pycache__/__init__.cpython-310.pyc +0 -0
  648. tilelang/3rdparty/tvm/python/tvm/script/parser/__pycache__/_core.cpython-310.pyc +0 -0
  649. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/__init__.cpython-310.pyc +0 -0
  650. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/diagnostics.cpython-310.pyc +0 -0
  651. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/dispatch.cpython-310.pyc +0 -0
  652. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/doc.cpython-310.pyc +0 -0
  653. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/doc_core.cpython-310.pyc +0 -0
  654. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/entry.cpython-310.pyc +0 -0
  655. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/error.cpython-310.pyc +0 -0
  656. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/evaluator.cpython-310.pyc +0 -0
  657. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/parser.cpython-310.pyc +0 -0
  658. tilelang/3rdparty/tvm/python/tvm/script/parser/core/__pycache__/utils.cpython-310.pyc +0 -0
  659. tilelang/3rdparty/tvm/python/tvm/script/parser/ir/__pycache__/__init__.cpython-310.pyc +0 -0
  660. tilelang/3rdparty/tvm/python/tvm/script/parser/ir/__pycache__/entry.cpython-310.pyc +0 -0
  661. tilelang/3rdparty/tvm/python/tvm/script/parser/ir/__pycache__/parser.cpython-310.pyc +0 -0
  662. tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/__init__.cpython-310.pyc +0 -0
  663. tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/entry.cpython-310.pyc +0 -0
  664. tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/operation.cpython-310.pyc +0 -0
  665. tilelang/3rdparty/tvm/python/tvm/script/parser/tir/__pycache__/parser.cpython-310.pyc +0 -0
  666. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/__init__.cpython-310.pyc +0 -0
  667. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  668. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/codegen.cpython-310.pyc +0 -0
  669. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/compilation_config.cpython-310.pyc +0 -0
  670. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/datatype.cpython-310.pyc +0 -0
  671. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/generic_func.cpython-310.pyc +0 -0
  672. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/tag.cpython-310.pyc +0 -0
  673. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/target.cpython-310.pyc +0 -0
  674. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/virtual_device.cpython-310.pyc +0 -0
  675. tilelang/3rdparty/tvm/python/tvm/target/__pycache__/x86.cpython-310.pyc +0 -0
  676. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/__init__.cpython-310.pyc +0 -0
  677. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  678. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/autodiff.cpython-310.pyc +0 -0
  679. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/operation.cpython-310.pyc +0 -0
  680. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/schedule.cpython-310.pyc +0 -0
  681. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/tag.cpython-310.pyc +0 -0
  682. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/tensor.cpython-310.pyc +0 -0
  683. tilelang/3rdparty/tvm/python/tvm/te/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
  684. tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/__init__.cpython-310.pyc +0 -0
  685. tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/calls.cpython-310.pyc +0 -0
  686. tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/module.cpython-310.pyc +0 -0
  687. tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/parser.cpython-310.pyc +0 -0
  688. tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/preprocessor.cpython-310.pyc +0 -0
  689. tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/runtime.cpython-310.pyc +0 -0
  690. tilelang/3rdparty/tvm/python/tvm/te/hybrid/__pycache__/utils.cpython-310.pyc +0 -0
  691. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/__init__.cpython-310.pyc +0 -0
  692. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  693. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/block_dependence_info.cpython-310.pyc +0 -0
  694. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/block_scope.cpython-310.pyc +0 -0
  695. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/buffer.cpython-310.pyc +0 -0
  696. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/data_layout.cpython-310.pyc +0 -0
  697. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/expr.cpython-310.pyc +0 -0
  698. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/function.cpython-310.pyc +0 -0
  699. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/generic.cpython-310.pyc +0 -0
  700. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/ir_builder.cpython-310.pyc +0 -0
  701. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/op.cpython-310.pyc +0 -0
  702. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/stmt.cpython-310.pyc +0 -0
  703. tilelang/3rdparty/tvm/python/tvm/tir/__pycache__/stmt_functor.cpython-310.pyc +0 -0
  704. tilelang/3rdparty/tvm/python/tvm/tir/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
  705. tilelang/3rdparty/tvm/python/tvm/tir/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  706. tilelang/3rdparty/tvm/python/tvm/tir/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
  707. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/__init__.cpython-310.pyc +0 -0
  708. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  709. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/_type_checker.cpython-310.pyc +0 -0
  710. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/analysis.cpython-310.pyc +0 -0
  711. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/instruction.cpython-310.pyc +0 -0
  712. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/schedule.cpython-310.pyc +0 -0
  713. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/state.cpython-310.pyc +0 -0
  714. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/trace.cpython-310.pyc +0 -0
  715. tilelang/3rdparty/tvm/python/tvm/tir/schedule/__pycache__/transform.cpython-310.pyc +0 -0
  716. tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/__init__.cpython-310.pyc +0 -0
  717. tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  718. tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/function_pass.cpython-310.pyc +0 -0
  719. tilelang/3rdparty/tvm/python/tvm/tir/transform/__pycache__/transform.cpython-310.pyc +0 -0
  720. tilelang/3rdparty/tvm/python/tvm/tir/usmp/__pycache__/__init__.cpython-310.pyc +0 -0
  721. tilelang/3rdparty/tvm/python/tvm/tir/usmp/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  722. tilelang/3rdparty/tvm/python/tvm/tir/usmp/__pycache__/utils.cpython-310.pyc +0 -0
  723. tilelang/3rdparty/tvm/python/tvm/tir/usmp/analysis/__pycache__/__init__.cpython-310.pyc +0 -0
  724. tilelang/3rdparty/tvm/python/tvm/tir/usmp/analysis/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  725. tilelang/3rdparty/tvm/python/tvm/tir/usmp/analysis/__pycache__/analysis.cpython-310.pyc +0 -0
  726. tilelang/3rdparty/tvm/python/tvm/tir/usmp/transform/__pycache__/__init__.cpython-310.pyc +0 -0
  727. tilelang/3rdparty/tvm/python/tvm/tir/usmp/transform/__pycache__/_ffi_api.cpython-310.pyc +0 -0
  728. tilelang/3rdparty/tvm/python/tvm/tir/usmp/transform/__pycache__/transform.cpython-310.pyc +0 -0
  729. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/__init__.cpython-310.pyc +0 -0
  730. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/argwhere.cpython-310.pyc +0 -0
  731. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/broadcast.cpython-310.pyc +0 -0
  732. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/einsum.cpython-310.pyc +0 -0
  733. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/generic_op_impl.cpython-310.pyc +0 -0
  734. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/math.cpython-310.pyc +0 -0
  735. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/reduction.cpython-310.pyc +0 -0
  736. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/scan.cpython-310.pyc +0 -0
  737. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/scatter.cpython-310.pyc +0 -0
  738. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/scatter_elements.cpython-310.pyc +0 -0
  739. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/searchsorted.cpython-310.pyc +0 -0
  740. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/signal.cpython-310.pyc +0 -0
  741. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/sort.cpython-310.pyc +0 -0
  742. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/sparse_fill_empty_rows.cpython-310.pyc +0 -0
  743. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/sparse_reshape.cpython-310.pyc +0 -0
  744. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/tag.cpython-310.pyc +0 -0
  745. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/tensor.cpython-310.pyc +0 -0
  746. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/transform.cpython-310.pyc +0 -0
  747. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/unique.cpython-310.pyc +0 -0
  748. tilelang/3rdparty/tvm/python/tvm/topi/__pycache__/utils.cpython-310.pyc +0 -0
  749. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/__init__.cpython-310.pyc +0 -0
  750. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
  751. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nchw.cpython-310.pyc +0 -0
  752. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nchw_winograd.cpython-310.pyc +0 -0
  753. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nhwc.cpython-310.pyc +0 -0
  754. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_nhwc_winograd.cpython-310.pyc +0 -0
  755. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_transpose_alter_op.cpython-310.pyc +0 -0
  756. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_transpose_nchw.cpython-310.pyc +0 -0
  757. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/conv2d_winograd_common.cpython-310.pyc +0 -0
  758. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/depthwise_conv2d_nchw.cpython-310.pyc +0 -0
  759. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/depthwise_conv2d_nhwc.cpython-310.pyc +0 -0
  760. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/injective.cpython-310.pyc +0 -0
  761. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/pooling.cpython-310.pyc +0 -0
  762. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/reduction.cpython-310.pyc +0 -0
  763. tilelang/3rdparty/tvm/python/tvm/topi/adreno/__pycache__/utils.cpython-310.pyc +0 -0
  764. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/__init__.cpython-310.pyc +0 -0
  765. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/arm_utils.cpython-310.pyc +0 -0
  766. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/bitserial_conv2d.cpython-310.pyc +0 -0
  767. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/bitserial_dense.cpython-310.pyc +0 -0
  768. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv1d.cpython-310.pyc +0 -0
  769. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d.cpython-310.pyc +0 -0
  770. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
  771. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_gemm.cpython-310.pyc +0 -0
  772. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_int8.cpython-310.pyc +0 -0
  773. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_spatial_pack.cpython-310.pyc +0 -0
  774. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
  775. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/dense.cpython-310.pyc +0 -0
  776. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  777. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/group_conv2d.cpython-310.pyc +0 -0
  778. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/injective.cpython-310.pyc +0 -0
  779. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/pooling.cpython-310.pyc +0 -0
  780. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/qnn.cpython-310.pyc +0 -0
  781. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/qnn_alter_op.cpython-310.pyc +0 -0
  782. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/qnn_legalize.cpython-310.pyc +0 -0
  783. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
  784. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/__pycache__/__init__.cpython-310.pyc +0 -0
  785. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/__init__.cpython-310.pyc +0 -0
  786. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/conv1d.cpython-310.pyc +0 -0
  787. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/conv2d.cpython-310.pyc +0 -0
  788. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/dense.cpython-310.pyc +0 -0
  789. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  790. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/__pycache__/pool.cpython-310.pyc +0 -0
  791. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/__init__.cpython-310.pyc +0 -0
  792. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/avg_pool.cpython-310.pyc +0 -0
  793. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/common.cpython-310.pyc +0 -0
  794. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/gemm.cpython-310.pyc +0 -0
  795. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/max_pool.cpython-310.pyc +0 -0
  796. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/multi_channel_convolve.cpython-310.pyc +0 -0
  797. tilelang/3rdparty/tvm/python/tvm/topi/arm_cpu/mprofile/dsp/micro_kernel/__pycache__/tensordot.cpython-310.pyc +0 -0
  798. tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/__init__.cpython-310.pyc +0 -0
  799. tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/conv2d.cpython-310.pyc +0 -0
  800. tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/dense.cpython-310.pyc +0 -0
  801. tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  802. tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/gemm.cpython-310.pyc +0 -0
  803. tilelang/3rdparty/tvm/python/tvm/topi/bifrost/__pycache__/transforms.cpython-310.pyc +0 -0
  804. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/__init__.cpython-310.pyc +0 -0
  805. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/cuda.cpython-310.pyc +0 -0
  806. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/generic.cpython-310.pyc +0 -0
  807. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/impl.cpython-310.pyc +0 -0
  808. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/nn.cpython-310.pyc +0 -0
  809. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/rocm.cpython-310.pyc +0 -0
  810. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/utils.cpython-310.pyc +0 -0
  811. tilelang/3rdparty/tvm/python/tvm/topi/cpp/__pycache__/x86.cpython-310.pyc +0 -0
  812. tilelang/3rdparty/tvm/python/tvm/topi/cpp/vision/__pycache__/__init__.cpython-310.pyc +0 -0
  813. tilelang/3rdparty/tvm/python/tvm/topi/cpp/vision/__pycache__/yolo.cpython-310.pyc +0 -0
  814. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/__init__.cpython-310.pyc +0 -0
  815. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/argwhere.cpython-310.pyc +0 -0
  816. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/batch_matmul.cpython-310.pyc +0 -0
  817. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/batch_matmul_tensorcore.cpython-310.pyc +0 -0
  818. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv1d.cpython-310.pyc +0 -0
  819. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv1d_transpose_ncw.cpython-310.pyc +0 -0
  820. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d.cpython-310.pyc +0 -0
  821. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
  822. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_direct.cpython-310.pyc +0 -0
  823. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_hwcn.cpython-310.pyc +0 -0
  824. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_hwnc_tensorcore.cpython-310.pyc +0 -0
  825. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_int8.cpython-310.pyc +0 -0
  826. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_nhwc_tensorcore.cpython-310.pyc +0 -0
  827. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_nhwc_winograd.cpython-310.pyc +0 -0
  828. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
  829. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv2d_winograd.cpython-310.pyc +0 -0
  830. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d.cpython-310.pyc +0 -0
  831. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_alter_op.cpython-310.pyc +0 -0
  832. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_direct.cpython-310.pyc +0 -0
  833. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_ndhwc_tensorcore.cpython-310.pyc +0 -0
  834. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_transpose_ncdhw.cpython-310.pyc +0 -0
  835. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/conv3d_winograd.cpython-310.pyc +0 -0
  836. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/correlation.cpython-310.pyc +0 -0
  837. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/deformable_conv2d.cpython-310.pyc +0 -0
  838. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/dense.cpython-310.pyc +0 -0
  839. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/dense_tensorcore.cpython-310.pyc +0 -0
  840. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  841. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/group_conv2d_nchw.cpython-310.pyc +0 -0
  842. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/injective.cpython-310.pyc +0 -0
  843. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/nms.cpython-310.pyc +0 -0
  844. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/nn.cpython-310.pyc +0 -0
  845. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/pooling.cpython-310.pyc +0 -0
  846. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/reduction.cpython-310.pyc +0 -0
  847. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/scan.cpython-310.pyc +0 -0
  848. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/scatter.cpython-310.pyc +0 -0
  849. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/scatter_elements.cpython-310.pyc +0 -0
  850. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/searchsorted.cpython-310.pyc +0 -0
  851. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/signal.cpython-310.pyc +0 -0
  852. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/softmax.cpython-310.pyc +0 -0
  853. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/sort.cpython-310.pyc +0 -0
  854. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/sparse.cpython-310.pyc +0 -0
  855. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/sparse_reshape.cpython-310.pyc +0 -0
  856. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
  857. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/tensorcore_alter_op.cpython-310.pyc +0 -0
  858. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/transform.cpython-310.pyc +0 -0
  859. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/unique.cpython-310.pyc +0 -0
  860. tilelang/3rdparty/tvm/python/tvm/topi/cuda/__pycache__/vision.cpython-310.pyc +0 -0
  861. tilelang/3rdparty/tvm/python/tvm/topi/cuda/rcnn/__pycache__/__init__.cpython-310.pyc +0 -0
  862. tilelang/3rdparty/tvm/python/tvm/topi/cuda/rcnn/__pycache__/proposal.cpython-310.pyc +0 -0
  863. tilelang/3rdparty/tvm/python/tvm/topi/cuda/ssd/__pycache__/__init__.cpython-310.pyc +0 -0
  864. tilelang/3rdparty/tvm/python/tvm/topi/cuda/ssd/__pycache__/multibox.cpython-310.pyc +0 -0
  865. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/__init__.cpython-310.pyc +0 -0
  866. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/conv2d.cpython-310.pyc +0 -0
  867. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/default.cpython-310.pyc +0 -0
  868. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/extern.cpython-310.pyc +0 -0
  869. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/image.cpython-310.pyc +0 -0
  870. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/injective.cpython-310.pyc +0 -0
  871. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/math.cpython-310.pyc +0 -0
  872. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/nn.cpython-310.pyc +0 -0
  873. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/search.cpython-310.pyc +0 -0
  874. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/sort.cpython-310.pyc +0 -0
  875. tilelang/3rdparty/tvm/python/tvm/topi/generic/__pycache__/vision.cpython-310.pyc +0 -0
  876. tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/__init__.cpython-310.pyc +0 -0
  877. tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/conv2d.cpython-310.pyc +0 -0
  878. tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/conv2d_nhwc.cpython-310.pyc +0 -0
  879. tilelang/3rdparty/tvm/python/tvm/topi/gpu/__pycache__/dense.cpython-310.pyc +0 -0
  880. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/__init__.cpython-310.pyc +0 -0
  881. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/batch_matmul.cpython-310.pyc +0 -0
  882. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/compute_poolarea.cpython-310.pyc +0 -0
  883. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/conv2d.cpython-310.pyc +0 -0
  884. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
  885. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/dense.cpython-310.pyc +0 -0
  886. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/dense_alter_op.cpython-310.pyc +0 -0
  887. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/injective.cpython-310.pyc +0 -0
  888. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/pad.cpython-310.pyc +0 -0
  889. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/pooling.cpython-310.pyc +0 -0
  890. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/reduce.cpython-310.pyc +0 -0
  891. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/resize2d.cpython-310.pyc +0 -0
  892. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
  893. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/__pycache__/utils.cpython-310.pyc +0 -0
  894. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/__init__.cpython-310.pyc +0 -0
  895. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/adaptive_avg_pool1d.cpython-310.pyc +0 -0
  896. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/avg_pool2d.cpython-310.pyc +0 -0
  897. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
  898. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/dense_alter_op.cpython-310.pyc +0 -0
  899. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/dequantize.cpython-310.pyc +0 -0
  900. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/global_avg_pool2d.cpython-310.pyc +0 -0
  901. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/nn.cpython-310.pyc +0 -0
  902. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/qadd_qsub_qmul.cpython-310.pyc +0 -0
  903. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/qdense.cpython-310.pyc +0 -0
  904. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/qdepthwise_conv2d_slice.cpython-310.pyc +0 -0
  905. tilelang/3rdparty/tvm/python/tvm/topi/hexagon/qnn/__pycache__/quantize.cpython-310.pyc +0 -0
  906. tilelang/3rdparty/tvm/python/tvm/topi/hls/__pycache__/__init__.cpython-310.pyc +0 -0
  907. tilelang/3rdparty/tvm/python/tvm/topi/hls/__pycache__/injective.cpython-310.pyc +0 -0
  908. tilelang/3rdparty/tvm/python/tvm/topi/hls/__pycache__/nn.cpython-310.pyc +0 -0
  909. tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/__init__.cpython-310.pyc +0 -0
  910. tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/dilation2d.cpython-310.pyc +0 -0
  911. tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/grid_sample.cpython-310.pyc +0 -0
  912. tilelang/3rdparty/tvm/python/tvm/topi/image/__pycache__/resize.cpython-310.pyc +0 -0
  913. tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/__init__.cpython-310.pyc +0 -0
  914. tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/conv2d.cpython-310.pyc +0 -0
  915. tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
  916. tilelang/3rdparty/tvm/python/tvm/topi/intel_graphics/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  917. tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/__init__.cpython-310.pyc +0 -0
  918. tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/conv2d.cpython-310.pyc +0 -0
  919. tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/dense.cpython-310.pyc +0 -0
  920. tilelang/3rdparty/tvm/python/tvm/topi/mali/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  921. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/__init__.cpython-310.pyc +0 -0
  922. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/batch_matmul.cpython-310.pyc +0 -0
  923. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/batch_norm.cpython-310.pyc +0 -0
  924. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/batch_to_space_nd.cpython-310.pyc +0 -0
  925. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bitserial_conv2d.cpython-310.pyc +0 -0
  926. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bitserial_dense.cpython-310.pyc +0 -0
  927. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bitserial_util.cpython-310.pyc +0 -0
  928. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/bnn.cpython-310.pyc +0 -0
  929. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv1d.cpython-310.pyc +0 -0
  930. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv1d_transpose.cpython-310.pyc +0 -0
  931. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv2d.cpython-310.pyc +0 -0
  932. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
  933. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv3d.cpython-310.pyc +0 -0
  934. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/conv3d_transpose.cpython-310.pyc +0 -0
  935. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/correlation.cpython-310.pyc +0 -0
  936. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/deformable_conv2d.cpython-310.pyc +0 -0
  937. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/dense.cpython-310.pyc +0 -0
  938. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/depth_to_space.cpython-310.pyc +0 -0
  939. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  940. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/dilate.cpython-310.pyc +0 -0
  941. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/elemwise.cpython-310.pyc +0 -0
  942. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/fifo_buffer.cpython-310.pyc +0 -0
  943. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/flatten.cpython-310.pyc +0 -0
  944. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/group_norm.cpython-310.pyc +0 -0
  945. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/instance_norm.cpython-310.pyc +0 -0
  946. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/layer_norm.cpython-310.pyc +0 -0
  947. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/local_response_norm.cpython-310.pyc +0 -0
  948. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/loss.cpython-310.pyc +0 -0
  949. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/lstm.cpython-310.pyc +0 -0
  950. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/mapping.cpython-310.pyc +0 -0
  951. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/pad.cpython-310.pyc +0 -0
  952. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/pooling.cpython-310.pyc +0 -0
  953. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/qnn.cpython-310.pyc +0 -0
  954. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/rms_norm.cpython-310.pyc +0 -0
  955. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/softmax.cpython-310.pyc +0 -0
  956. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/space_to_batch_nd.cpython-310.pyc +0 -0
  957. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/space_to_depth.cpython-310.pyc +0 -0
  958. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/sparse.cpython-310.pyc +0 -0
  959. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/upsampling.cpython-310.pyc +0 -0
  960. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/utils.cpython-310.pyc +0 -0
  961. tilelang/3rdparty/tvm/python/tvm/topi/nn/__pycache__/winograd_util.cpython-310.pyc +0 -0
  962. tilelang/3rdparty/tvm/python/tvm/topi/random/__pycache__/__init__.cpython-310.pyc +0 -0
  963. tilelang/3rdparty/tvm/python/tvm/topi/random/__pycache__/kernel.cpython-310.pyc +0 -0
  964. tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/__init__.cpython-310.pyc +0 -0
  965. tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/batch_matmul.cpython-310.pyc +0 -0
  966. tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/conv2d.cpython-310.pyc +0 -0
  967. tilelang/3rdparty/tvm/python/tvm/topi/rocm/__pycache__/dense.cpython-310.pyc +0 -0
  968. tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/__init__.cpython-310.pyc +0 -0
  969. tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/csrmm.cpython-310.pyc +0 -0
  970. tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/csrmv.cpython-310.pyc +0 -0
  971. tilelang/3rdparty/tvm/python/tvm/topi/sparse/__pycache__/dense.cpython-310.pyc +0 -0
  972. tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/__init__.cpython-310.pyc +0 -0
  973. tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/nms.cpython-310.pyc +0 -0
  974. tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/nms_util.cpython-310.pyc +0 -0
  975. tilelang/3rdparty/tvm/python/tvm/topi/vision/__pycache__/reorg.cpython-310.pyc +0 -0
  976. tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/__init__.cpython-310.pyc +0 -0
  977. tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/proposal.cpython-310.pyc +0 -0
  978. tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/roi_align.cpython-310.pyc +0 -0
  979. tilelang/3rdparty/tvm/python/tvm/topi/vision/rcnn/__pycache__/roi_pool.cpython-310.pyc +0 -0
  980. tilelang/3rdparty/tvm/python/tvm/topi/vision/ssd/__pycache__/__init__.cpython-310.pyc +0 -0
  981. tilelang/3rdparty/tvm/python/tvm/topi/vision/ssd/__pycache__/multibox.cpython-310.pyc +0 -0
  982. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/__init__.cpython-310.pyc +0 -0
  983. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/batch_matmul.cpython-310.pyc +0 -0
  984. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/binarize_pack.cpython-310.pyc +0 -0
  985. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/binary_dense.cpython-310.pyc +0 -0
  986. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/bitserial_conv2d.cpython-310.pyc +0 -0
  987. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/bitserial_dense.cpython-310.pyc +0 -0
  988. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/concat.cpython-310.pyc +0 -0
  989. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv1d.cpython-310.pyc +0 -0
  990. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d.cpython-310.pyc +0 -0
  991. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_alter_op.cpython-310.pyc +0 -0
  992. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_avx_1x1.cpython-310.pyc +0 -0
  993. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_avx_common.cpython-310.pyc +0 -0
  994. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_int8.cpython-310.pyc +0 -0
  995. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv2d_transpose.cpython-310.pyc +0 -0
  996. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv3d.cpython-310.pyc +0 -0
  997. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/conv3d_transpose.cpython-310.pyc +0 -0
  998. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/dense.cpython-310.pyc +0 -0
  999. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/dense_alter_op.cpython-310.pyc +0 -0
  1000. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/depthwise_conv2d.cpython-310.pyc +0 -0
  1001. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/group_conv2d.cpython-310.pyc +0 -0
  1002. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/injective.cpython-310.pyc +0 -0
  1003. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/math_alter_op.cpython-310.pyc +0 -0
  1004. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/nn.cpython-310.pyc +0 -0
  1005. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/pooling.cpython-310.pyc +0 -0
  1006. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/reduction.cpython-310.pyc +0 -0
  1007. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/roi_align.cpython-310.pyc +0 -0
  1008. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/sparse.cpython-310.pyc +0 -0
  1009. tilelang/3rdparty/tvm/python/tvm/topi/x86/__pycache__/tensor_intrin.cpython-310.pyc +0 -0
  1010. {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/licenses/LICENSE +0 -0
  1011. {tilelang_rocm-0.1.4.post5.dist-info → tilelang_rocm-0.1.4.post9.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,234 @@
1
+ # Copyright 2018 The apache/tvm Authors. All Rights Reserved.
2
+ # Licensed to the Apache Software Foundation (ASF) under one
3
+ # or more contributor license agreements. See the NOTICE file
4
+ # distributed with this work for additional information
5
+ # regarding copyright ownership. The ASF licenses this file
6
+ # to you under the Apache License, Version 2.0 (the
7
+ # "License"); you may not use this file except in compliance
8
+ # with the License. You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing,
13
+ # software distributed under the License is distributed on an
14
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ # KIND, either express or implied. See the License for the
16
+ # specific language governing permissions and limitations
17
+ # under the License.
18
+ #
19
+ # Copyright (c) Tile-AI Corporation.
20
+ # Licensed under the MIT License.
21
+ # The code below is mostly copied from mlc.ai quantization.py in mlc-llm.
22
+ # pylint: disable=invalid-name,missing-function-docstring,unused-variable
23
+ """TIR computation utilities for quantization."""
24
+
25
+ from tilelang import tvm as tvm
26
+ from tvm import tir
27
+
28
+
29
+ # fmt: off
30
+ def _tir_f32x2_to_bf16x2_to_u32(v0: tir.PrimExpr, v1: tir.PrimExpr, round_to_even: bool = True):
31
+ mask = tir.const((1 << 16) - 1, "uint32")
32
+ res = []
33
+ for data in [v0, v1]:
34
+ u32_val = tir.reinterpret("uint32", data)
35
+ if round_to_even:
36
+ rounding_bias = ((u32_val >> tir.const(16, "uint32"))
37
+ & tir.const(1, "uint32")) + tir.const(0x7FFF, "uint32")
38
+ u32_val += rounding_bias
39
+ res.append((u32_val >> tir.const(16, "uint32")) & mask)
40
+ return res[0] | (res[1] << tir.const(16, "uint32"))
41
+
42
+
43
+ def _tir_u32_to_bf16x2_to_f32x2(x: tir.PrimExpr):
44
+ mask = tir.const((1 << 16) - 1, "uint32")
45
+ x0 = x & mask
46
+ x1 = (x >> 16) & mask
47
+ return (tir.reinterpret("float32", x << tir.const(16, "uint32")) for x in [x0, x1])
48
+
49
+
50
+ def _tir_u32_to_int_to_float(nbit: int, val: tir.PrimExpr, pos: tir.PrimExpr, dtype: str):
51
+ assert val.dtype == "uint32"
52
+ mask = tvm.tir.const((1 << nbit) - 1, "uint32")
53
+ return tir.Cast(dtype, (val >> (pos * nbit).astype("uint32")) & mask)
54
+
55
+
56
+ def _tir_packed_uint_to_uint_to_float(storage_nbit: int):
57
+ storage_dtype = "uint" + str(storage_nbit)
58
+
59
+ def f_convert(nbit: int, val: tir.PrimExpr, pos: tir.PrimExpr, dtype: str):
60
+ assert val.dtype == storage_dtype, f"{val.dtype} != {storage_dtype}"
61
+ max_int_value = (1 << (nbit - 1)) - 1
62
+ return ((val >> (pos.astype("uint32") * tir.const(nbit, "uint32"))) & tir.const(
63
+ (1 << nbit) - 1, "uint32")).astype(dtype) - tir.const(max_int_value, dtype)
64
+
65
+ return f_convert
66
+
67
+
68
+ def _tir_packed_int_to_int_to_float(storage_nbit: int):
69
+ storage_dtype = "int" + str(storage_nbit)
70
+
71
+ def f_convert(nbit: int, val: tir.PrimExpr, pos: tir.PrimExpr, dtype: str):
72
+ assert val.dtype == storage_dtype, f"{val.dtype} != {storage_dtype}"
73
+ mask = tir.const((1 << nbit) - 1, "int32")
74
+ unextended = (val >> (pos.astype("int32") * tir.const(nbit, "int32"))) & mask
75
+ return tir.Cast(
76
+ dtype, (unextended << tir.const(32 - nbit, "int32")) >> tir.const(32 - nbit, "int32"))
77
+
78
+ return f_convert
79
+
80
+
81
+ def _tir_f32_to_uint_to_f4(val: tir.PrimExpr):
82
+ assert val.dtype == "float32"
83
+ val_u32 = tir.reinterpret("uint32", val)
84
+ # e_f32 > 120 -> e_f4 = min(e_f32 - 120 + M_h, 7)
85
+ # e_f32 == 120 -> e_f4 = 1
86
+ # e_f32 < 120 -> e_f4 = 0
87
+ m_h = (val_u32 >> tir.const(22, "uint32")) & tir.const(1, "uint32")
88
+ e_f32 = (val_u32 >> tir.const(23, "uint32")) & tir.const(255, "uint32")
89
+ s = (val_u32 >> tir.const(31, "uint32"))
90
+ e_f4 = tir.Select(
91
+ e_f32 > tir.const(120, "uint32"),
92
+ tir.Min(e_f32 - tir.const(120, "uint32") + m_h, tir.const(7, "uint32")),
93
+ tir.Select(e_f32 == tir.const(120, "uint32"), tir.const(1, "uint32"),
94
+ tir.const(0, "uint32")))
95
+ return (s << tir.const(3, "uint32")) | e_f4
96
+
97
+
98
+ def _tir_f16_to_uint_to_f4(val: tir.PrimExpr):
99
+ assert val.dtype == "float16"
100
+ val_u32 = tir.Cast("uint32", tir.reinterpret("uint16", val))
101
+ m_h = (val_u32 >> tir.const(9, "uint32")) & tir.const(1, "uint32")
102
+ e_f16 = (val_u32 >> tir.const(10, "uint32")) & tir.const(31, "uint32")
103
+ s = (val_u32 >> tir.const(15, "uint32"))
104
+ e_f4 = tir.Select(
105
+ e_f16 > tir.const(8, "uint32"),
106
+ tir.Min(e_f16 - tir.const(8, "uint32") + m_h, tir.const(7, "uint32")),
107
+ tir.Select(e_f16 == tir.const(8, "uint32"), tir.const(1, "uint32"), tir.const(0, "uint32")))
108
+ return (s << tir.const(3, "uint32")) | e_f4
109
+
110
+
111
+ def _tir_u32_to_f4_to_f32(nbit: int, val: tir.PrimExpr, pos: tir.PrimExpr, dtype: str):
112
+ assert nbit == 4
113
+ assert dtype == "float32"
114
+ assert val.dtype == "uint32"
115
+ # e_f4 == 0 -> e_f32 = 0
116
+ # e_f4 != 0 -> e_f32 = e_f4 + 120 = e_f4 | (1111000)_2
117
+ mask = tvm.tir.const((1 << nbit) - 1, "uint32")
118
+ f4 = (val >> (pos.astype("uint32") * tir.const(nbit, "uint32"))) & mask
119
+ s = f4 >> tir.const(3, "uint32")
120
+ e_f4 = f4 & tir.const(7, "uint32")
121
+ e_f32 = e_f4 | tir.const(120, "uint32")
122
+ val_f32 = tir.reinterpret("float32",
123
+ (e_f32 | (s << tir.const(8, "uint32"))) << tir.const(23, "uint32"))
124
+ return tir.Select(e_f4 == tir.const(0, "uint32"), tir.const(0, "float32"), val_f32)
125
+
126
+
127
+ def _tir_packed_to_fp4_to_f16(nbit: int, val: tir.PrimExpr, pos: tir.PrimExpr, dtype: str):
128
+ assert nbit == 4
129
+ assert dtype == "float16"
130
+ assert val.dtype == "uint32"
131
+ # e_f4 == 0 -> e_f16 = 0
132
+ # e_f4 != 0 -> e_f16 = e_f4 + 8 = e_f4 | (1000)_2
133
+ mask = tvm.tir.const((1 << nbit) - 1, "uint16")
134
+ f4 = (val >> (pos.astype("uint16") * tir.const(nbit, "uint16"))) & mask
135
+ s = f4 >> tir.const(3, "uint16")
136
+ e_f4 = f4 & tir.const(7, "uint16")
137
+ e_f16 = e_f4 | tir.const(8, "uint16")
138
+ val_f16 = tir.reinterpret("float16",
139
+ ((e_f16 | (s << tir.const(5, "uint16"))) << tir.const(10, "uint16")).astype("uint16"))
140
+ return tir.Select(e_f4 == tir.const(0, "uint16"), tir.const(0, "float16"), val_f16)
141
+
142
+ def _tir_packed_to_fp4_to_f16(storage_type="uint", storage_nbit=8):
143
+ storage_dtype = storage_type + str(storage_nbit)
144
+
145
+ def f_convert(nbit: int, val: tvm.tir.PrimExpr, pos: tvm.tir.PrimExpr, dtype: str):
146
+ assert val.dtype == storage_dtype, f"{val.dtype} != {storage_dtype}"
147
+ mask = tvm.tir.const((1 << nbit) - 1, storage_dtype)
148
+ f4 = ((val >> (pos * nbit).astype(storage_dtype)) & mask).astype(storage_dtype)
149
+ f4 = (val >> (pos.astype(storage_dtype) * tir.const(nbit, storage_dtype))) & mask
150
+ s = f4 >> tir.const(3, storage_dtype)
151
+ e_f4 = f4 & tir.const(7, storage_dtype)
152
+ e_f16 = e_f4 | tir.const(8, storage_dtype)
153
+ val_f16 = tir.reinterpret("float16",
154
+ ((e_f16 | (s << tir.const(5, storage_dtype))) << tir.const(10, storage_dtype)).astype("uint16"))
155
+ return tir.Select(e_f4 == tir.const(0, storage_dtype), tir.const(0, "float16"), val_f16)
156
+
157
+ return f_convert
158
+
159
+ def _tir_u8_to_f8_e4m3_to_f16_naive(nbit: int, val: tir.PrimExpr, dtype: str):
160
+ assert nbit == 8
161
+ assert dtype == "float16"
162
+ s_f16 = (val >> tir.const(7, "uint16")) << tir.const(15, "uint16")
163
+ e4 = val & tir.const(0x40, "uint16")
164
+ prefix = tir.Select(e4 == tir.const(0, "uint16"), tir.const(0x2000, "uint16"),
165
+ tir.const(0x4000, "uint16"))
166
+ e_f16 = (((val & tir.const(63, "uint16")) << tir.const(7, "uint16"))) | prefix
167
+ return tir.reinterpret("float16", s_f16 | e_f16)
168
+
169
+
170
+ def _tir_u8_to_f8_e4m3_to_f16(nbit: int, val: tir.PrimExpr, dtype: str):
171
+ assert nbit == 8
172
+ assert dtype == "float16"
173
+ s_f16 = (val >> tir.const(7, "uint16")) << tir.const(15, "uint16")
174
+ e4 = val & tir.const(0x40, "uint16")
175
+ e_f16 = (((val & tir.const(63, "uint16")) << tir.const(7, "uint16"))) | (e4 << tir.const(8, "uint16")) | (e4 << tir.const(7, "uint16"))
176
+ e_f16 = e_f16 ^ tir.const(0x2000, "uint16")
177
+ return tir.reinterpret("float16", s_f16 | e_f16)
178
+
179
+
180
+ def _tir_u8_to_f8_e5m2_to_f16(nbit: int, val: tir.PrimExpr, dtype: str):
181
+ assert nbit == 8
182
+ assert dtype == "float16"
183
+ return tir.reinterpret("e5m2_float8", val).astype("float16")
184
+
185
+
186
+ def _tir_packed_to_signed_convert(storage_type="uint", storage_nbit=8):
187
+ storage_dtype = storage_type + str(storage_nbit)
188
+
189
+ def f_convert(nbit: int, val: tir.PrimExpr, pos: tir.PrimExpr, dtype: str):
190
+ assert val.dtype == storage_dtype, f"{val.dtype} != {storage_dtype}"
191
+ max_int_value = (1 << (nbit - 1))
192
+ return ((val >> (pos.astype("uint32") * tir.const(nbit, "uint32"))) & tir.const(
193
+ (1 << nbit) - 1, "uint32")).astype(dtype) - tir.const(max_int_value, dtype)
194
+
195
+ return f_convert
196
+
197
+
198
+ def _tir_packed_to_unsigned_convert(storage_type="uint", storage_nbit=8):
199
+ storage_dtype = storage_type + str(storage_nbit)
200
+
201
+ def f_convert(nbit: int, val: tvm.tir.PrimExpr, pos: tvm.tir.PrimExpr, dtype: str):
202
+ assert val.dtype == storage_dtype, f"{val.dtype} != {storage_dtype}"
203
+ mask = tvm.tir.const((1 << nbit) - 1, storage_dtype)
204
+ return ((val >> (pos * nbit).astype(storage_dtype)) & mask).astype(dtype)
205
+
206
+ return f_convert
207
+
208
+
209
+ def _tir_packed_to_unsigned_convert_with_zeros(storage_type="uint", storage_nbit=8):
210
+ storage_dtype = storage_type + str(storage_nbit)
211
+
212
+ def f_convert(nbit: int, val: tvm.tir.PrimExpr, pos: tvm.tir.PrimExpr, zero: tvm.tir.PrimExpr,
213
+ dtype: str):
214
+ assert val.dtype == storage_dtype, f"{val.dtype} != {storage_dtype}"
215
+ mask = tvm.tir.const((1 << nbit) - 1, storage_dtype)
216
+ return (((val >> (pos * nbit).astype(storage_dtype)) & mask) - zero).astype(dtype)
217
+
218
+ return f_convert
219
+
220
+
221
+ def _tir_packed_int_to_int_convert(storage_type="uint", storage_nbit=8):
222
+ storage_dtype = storage_type + str(storage_nbit)
223
+
224
+ def f_convert(nbit: int, val: tir.PrimExpr, pos: tir.PrimExpr, dtype: str):
225
+ assert val.dtype == storage_dtype, f"{val.dtype} != {storage_dtype}"
226
+ mask = tir.const((1 << nbit) - 1, "int32")
227
+ unextended = (val >> (pos.astype("int32") * tir.const(nbit, "int32"))) & mask
228
+ return tir.Cast(
229
+ dtype, (unextended << tir.const(32 - nbit, "int32")) >> tir.const(32 - nbit, "int32"))
230
+
231
+ return f_convert
232
+
233
+
234
+ # fmt: on
@@ -0,0 +1,126 @@
1
+ # Copyright (c) Tile-AI Corporation.
2
+ # Licensed under the MIT License.
3
+
4
+
5
+ def gen_quant4(k, n, groupsize=-1):
6
+ import torch
7
+ import torch.nn as nn
8
+ maxq = 2**4
9
+ w = torch.randn((k, n), dtype=torch.half, device="cpu")
10
+
11
+ original_w = w.clone()
12
+
13
+ if groupsize == -1:
14
+ groupsize = k
15
+
16
+ if groupsize != -1:
17
+ w = w.reshape((-1, groupsize, n))
18
+ w = w.permute(1, 0, 2)
19
+ w = w.reshape((groupsize, -1))
20
+
21
+ s = torch.max(torch.abs(w), 0, keepdim=True)[0]
22
+ s *= 2 / maxq
23
+
24
+ # Quantize.
25
+ w = torch.round(w / s).int()
26
+
27
+ # Unsigned storage.
28
+ w += (maxq) // 2
29
+
30
+ w = torch.clamp(w, 0, maxq)
31
+
32
+ # Dequantize.
33
+ ref = (w - (maxq) // 2).half() * s
34
+
35
+ if groupsize != -1:
36
+
37
+ def reshape(w):
38
+ w = w.reshape((groupsize, -1, n))
39
+ w = w.permute(1, 0, 2)
40
+ w = w.reshape((k, n)).contiguous()
41
+ return w
42
+
43
+ ref = reshape(ref)
44
+ w = reshape(w)
45
+
46
+ s = s.reshape((-1, n)).contiguous()
47
+ linear = nn.Linear(k, n, bias=False)
48
+ linear.weight.data = ref.t()
49
+
50
+ return original_w, linear, s, (w - (maxq) // 2)
51
+
52
+
53
+ def general_compress(lowprecision_weight, source_bits=4, storage_dtype=None):
54
+ import torch
55
+ if storage_dtype is None:
56
+ storage_dtype = torch.int8
57
+ elems_per_byte = 8 // source_bits
58
+ if lowprecision_weight.dtype == torch.float16:
59
+ lowprecision_weight = lowprecision_weight.to(torch.int8)
60
+ int8_weight = torch.zeros(
61
+ (*lowprecision_weight.shape[:-1], lowprecision_weight.shape[-1] // elems_per_byte),
62
+ dtype=torch.int8,
63
+ device=lowprecision_weight.device)
64
+ for j in range(lowprecision_weight.shape[-1] // elems_per_byte):
65
+ for k in range(elems_per_byte):
66
+ int8_weight[..., j] |= (lowprecision_weight[..., j * elems_per_byte + k] <<
67
+ (source_bits * k)).to(torch.int8)
68
+
69
+ return int8_weight.to(storage_dtype)
70
+
71
+
72
+ # interleave weight numpy implementation
73
+ def interleave_weight(qweight, nbits=4, target_dtype="float16"):
74
+ """Interleave the weight to the target data type.
75
+
76
+ Args:
77
+ qweight (_type_): _description_
78
+ nbits (int, optional): _description_. Defaults to 4.
79
+ target_dtype (str, optional): _description_. Defaults to "float16".
80
+
81
+ Returns:
82
+ _type_: _description_
83
+
84
+ Example:
85
+ qweight = torch.randint(0, 127, (10, 10), dtype=torch.int8).cuda()
86
+ interleave_weight(qweight, 4, "float16")
87
+ """
88
+ import torch
89
+ assert target_dtype in ["float16", "int8"]
90
+ # reinterpret the data type of qweight to int32
91
+ qweight = qweight.view(torch.int32)
92
+ new_qweight = torch.zeros_like(qweight)
93
+ bits_stride = 8 if target_dtype == "int8" else 16
94
+ mask = (1 << nbits) - 1 # for 4bit the val is 0x0000000f
95
+ num_groups = 32 // bits_stride
96
+ elems_per_group = bits_stride // nbits
97
+ for i in range(num_groups):
98
+ for j in range(elems_per_group):
99
+ offset = i * elems_per_group + j
100
+ shift = (offset % num_groups) * bits_stride + (offset // num_groups) * nbits
101
+ new_qweight |= ((qweight >> (nbits * offset)) & mask) << shift
102
+
103
+ if nbits == 1 and target_dtype == "int8":
104
+ # special handling for 1b interleave
105
+ n16_weight = new_qweight & torch.int32(0xF0F00F0F)
106
+ n16_weight |= ((new_qweight & torch.int32(0x000000F0)) >> 4) << 16
107
+ n16_weight |= ((new_qweight & torch.int32(0x0000F000)) >> 12) << 24
108
+ n16_weight |= ((new_qweight & torch.int32(0x000F0000)) >> 16) << 4
109
+ n16_weight |= ((new_qweight & torch.int32(0x0F000000)) >> 24) << 12
110
+ return n16_weight.view(torch.int8)
111
+ elif nbits == 2 and target_dtype == "float16":
112
+ n8_weight = new_qweight & torch.int32(0xFF0000FF)
113
+ n8_weight |= ((new_qweight & torch.int32(0x0000FF00)) >> 8) << 16
114
+ n8_weight |= ((new_qweight & torch.int32(0x00FF0000)) >> 16) << 8
115
+ return n8_weight.view(torch.int8)
116
+ elif nbits == 1 and target_dtype == "float16":
117
+ n8_weight = new_qweight & torch.int32(0xF000000F)
118
+ n8_weight |= ((new_qweight & torch.int32(0x000000F0)) >> 4) << 8
119
+ n8_weight |= ((new_qweight & torch.int32(0x00000F00)) >> 8) << 16
120
+ n8_weight |= ((new_qweight & torch.int32(0x0000F000)) >> 12) << 24
121
+ n8_weight |= ((new_qweight & torch.int32(0x000F0000)) >> 16) << 4
122
+ n8_weight |= ((new_qweight & torch.int32(0x00F00000)) >> 20) << 12
123
+ n8_weight |= ((new_qweight & torch.int32(0x0F000000)) >> 24) << 20
124
+ return n8_weight.view(torch.int8)
125
+
126
+ return new_qweight.view(torch.int8)
@@ -181,6 +181,19 @@ TL_DEVICE void AtomicAddx2(bfloat16_t *address, bfloat16_t *val) {
181
181
  }
182
182
  #endif
183
183
 
184
+ #if (defined(__CUDA_ARCH_LIST__) && (__CUDA_ARCH_LIST__ >= 900))
185
+ // AtomicAdd Functions for FLOAT16x2
186
+ TL_DEVICE void AtomicAddx2(float *address, float *val) {
187
+ atomicAdd(reinterpret_cast<float2 *>(address),
188
+ static_cast<float2>(*reinterpret_cast<float2 *>(val)));
189
+ }
190
+ // AtomicAdd Functions for FLOAT16x4
191
+ TL_DEVICE void AtomicAddx4(float *address, float *val) {
192
+ atomicAdd(reinterpret_cast<float4 *>(address),
193
+ static_cast<float4>(*reinterpret_cast<float4 *>(val)));
194
+ }
195
+ #endif
196
+
184
197
  // DP4A
185
198
  template <typename InDatatype, typename OutDatatype>
186
199
  TL_DEVICE void DP4A(InDatatype *a, InDatatype *b, OutDatatype *c) {
@@ -210,4 +223,14 @@ template <typename T> TL_DEVICE bool All(T *a, int size) {
210
223
  }
211
224
  return true;
212
225
  }
226
+
227
+ // Pow of int
228
+ template <int y = 1, typename T> TL_DEVICE T pow_of_int(T x) {
229
+ T result = x;
230
+ for (int i = 1; i < y; i++) {
231
+ result *= x;
232
+ }
233
+ return result;
234
+ }
235
+
213
236
  } // namespace tl
@@ -3,21 +3,50 @@
3
3
  #pragma once
4
4
 
5
5
  #include <cute/numeric/numeric_types.hpp>
6
+
6
7
  using fp8_e4_t = cute::float_e4m3_t;
7
- using fp8_e4_2_t = __nv_fp8x2_e4m3;
8
- using fp8_e4_4_t = __nv_fp8x4_e4m3;
9
- struct fp8_e4_8_t {
10
- fp8_e4_t data[8];
8
+ using fp8_e5_t = cute::float_e5m2_t;
9
+
10
+ struct __CUDA_ALIGN__(2) fp8_e4_2_t {
11
+ fp8_e4_t x;
12
+ fp8_e4_t y;
13
+ };
14
+
15
+ struct __CUDA_ALIGN__(4) fp8_e4_4_t {
16
+ fp8_e4_t x;
17
+ fp8_e4_t y;
18
+ fp8_e4_t z;
19
+ fp8_e4_t w;
11
20
  };
12
- struct fp8_e4_16_t {
13
- fp8_e4_t data[16];
21
+
22
+ struct __CUDA_ALIGN__(8) fp8_e4_8_t {
23
+ fp8_e4_4_t x;
24
+ fp8_e4_4_t y;
14
25
  };
15
- using fp8_e5_t = cute::float_e5m2_t;
16
- using fp8_e5_2_t = __nv_fp8x2_e5m2;
17
- using fp8_e5_4_t = __nv_fp8x4_e5m2;
18
- struct fp8_e5_8_t {
19
- fp8_e5_t data[8];
26
+
27
+ struct __CUDA_ALIGN__(16) fp8_e4_16_t {
28
+ fp8_e4_8_t x;
29
+ fp8_e4_8_t y;
20
30
  };
21
- struct fp8_e5_16_t {
22
- fp8_e5_t data[16];
31
+
32
+ struct __CUDA_ALIGN__(2) fp8_e5_2_t {
33
+ fp8_e5_t x;
34
+ fp8_e5_t y;
35
+ };
36
+
37
+ struct __CUDA_ALIGN__(4) fp8_e5_4_t {
38
+ fp8_e5_t x;
39
+ fp8_e5_t y;
40
+ fp8_e5_t z;
41
+ fp8_e5_t w;
42
+ };
43
+
44
+ struct __CUDA_ALIGN__(8) fp8_e5_8_t {
45
+ fp8_e5_4_t x;
46
+ fp8_e5_4_t y;
47
+ };
48
+
49
+ struct __CUDA_ALIGN__(16) fp8_e5_16_t {
50
+ fp8_e5_8_t x;
51
+ fp8_e5_8_t y;
23
52
  };
@@ -1,5 +1,6 @@
1
1
  #pragma once
2
2
 
3
+ #include "./cuda_fp8.h"
3
4
  #include "common.h"
4
5
  #include <stdio.h>
5
6
 
@@ -78,10 +79,25 @@ __device__ void debug_print_var<double>(const char *msg, double var) {
78
79
  threadIdx.z, var);
79
80
  }
80
81
 
81
- #pragma once
82
+ // Specialization for fp8_e4_t type
83
+ template <>
84
+ __device__ void debug_print_var<fp8_e4_t>(const char *msg, fp8_e4_t var) {
85
+ printf(
86
+ "msg='%s' BlockIdx=(%d, %d, %d), ThreadIdx=(%d, %d, %d): dtype=fp8_e4_t "
87
+ "value=%f\n",
88
+ msg, blockIdx.x, blockIdx.y, blockIdx.z, threadIdx.x, threadIdx.y,
89
+ threadIdx.z, (float)var);
90
+ }
82
91
 
83
- #include "common.h"
84
- #include <stdio.h>
92
+ // Specialization for fp8_e5_t type
93
+ template <>
94
+ __device__ void debug_print_var<fp8_e5_t>(const char *msg, fp8_e5_t var) {
95
+ printf(
96
+ "msg='%s' BlockIdx=(%d, %d, %d), ThreadIdx=(%d, %d, %d): dtype=fp8_e5_t "
97
+ "value=%f\n",
98
+ msg, blockIdx.x, blockIdx.y, blockIdx.z, threadIdx.x, threadIdx.y,
99
+ threadIdx.z, (float)var);
100
+ }
85
101
 
86
102
  // Template declaration for device-side debug printing (buffer only)
87
103
  template <typename T>
@@ -175,3 +191,25 @@ __device__ void debug_print_buffer_value<double>(const char *msg,
175
191
  msg, blockIdx.x, blockIdx.y, blockIdx.z, threadIdx.x, threadIdx.y,
176
192
  threadIdx.z, buf_name, index, var);
177
193
  }
194
+
195
+ // Specialization for fp8_e4_t type
196
+ template <>
197
+ __device__ void debug_print_buffer_value<fp8_e4_t>(const char *msg,
198
+ const char *buf_name,
199
+ int index, fp8_e4_t var) {
200
+ printf("msg='%s' BlockIdx=(%d, %d, %d), ThreadIdx=(%d, %d, %d): buffer=%s, "
201
+ "index=%d, dtype=fp8_e4_t value=%f\n",
202
+ msg, blockIdx.x, blockIdx.y, blockIdx.z, threadIdx.x, threadIdx.y,
203
+ threadIdx.z, buf_name, index, (float)var);
204
+ }
205
+
206
+ // Specialization for fp8_e5_t type
207
+ template <>
208
+ __device__ void debug_print_buffer_value<fp8_e5_t>(const char *msg,
209
+ const char *buf_name,
210
+ int index, fp8_e5_t var) {
211
+ printf("msg='%s' BlockIdx=(%d, %d, %d), ThreadIdx=(%d, %d, %d): buffer=%s, "
212
+ "index=%d, dtype=fp8_e5_t value=%f\n",
213
+ msg, blockIdx.x, blockIdx.y, blockIdx.z, threadIdx.x, threadIdx.y,
214
+ threadIdx.z, buf_name, index, (float)var);
215
+ }
@@ -58,6 +58,23 @@ struct DispatchInstruction<half_t, half_t, float, num_warp_m, num_warp_n, N> {
58
58
  };
59
59
  #endif
60
60
 
61
+ template <int N, int num_warp_n, bool transpose> struct SelectCopy {
62
+ static constexpr int remainder = (N / num_warp_n) % 16;
63
+ using type = std::conditional_t<
64
+ remainder == 4 || remainder == 8 || remainder == 0,
65
+ std::conditional_t<
66
+ transpose,
67
+ std::conditional_t<
68
+ remainder == 4, SM75_U32x1_LDSM_N,
69
+ std::conditional_t<remainder == 8, SM75_U32x2_LDSM_N,
70
+ SM75_U32x4_LDSM_N>>,
71
+ std::conditional_t<
72
+ remainder == 4, SM75_U16x2_LDSM_T,
73
+ std::conditional_t<remainder == 8, SM75_U16x4_LDSM_T,
74
+ SM75_U16x8_LDSM_T>>>,
75
+ DefaultCopy>;
76
+ };
77
+
61
78
  template <int Bits, int N, int K, bool K_inner, int num_warp_n,
62
79
  typename Enable = void>
63
80
  struct OperandTraits {
@@ -77,8 +94,7 @@ struct OperandTraits<16, N, K, true, num_warp_n,
77
94
  using LayoutAtom = decltype(composition(
78
95
  Swizzle<2, 3, 3>{}, Layout<Shape<_8, _32>, Stride<_32, _1>>{}));
79
96
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{}));
80
- using Copy = typename std::conditional<N == 8 * num_warp_n, SM75_U32x2_LDSM_N,
81
- SM75_U32x4_LDSM_N>::type;
97
+ using Copy = typename SelectCopy<N, num_warp_n, true>::type;
82
98
  };
83
99
 
84
100
  template <int N, int K, int num_warp_n>
@@ -87,8 +103,7 @@ struct OperandTraits<16, N, K, true, num_warp_n,
87
103
  using LayoutAtom = decltype(composition(
88
104
  Swizzle<3, 3, 3>{}, Layout<Shape<_8, _64>, Stride<_64, _1>>{}));
89
105
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{}));
90
- using Copy = typename std::conditional<N == 8 * num_warp_n, SM75_U32x2_LDSM_N,
91
- SM75_U32x4_LDSM_N>::type;
106
+ using Copy = typename SelectCopy<N, num_warp_n, true>::type;
92
107
  };
93
108
 
94
109
  template <int N, int K, int num_warp_n>
@@ -98,7 +113,7 @@ struct OperandTraits<16, N, K, false, num_warp_n,
98
113
  Swizzle<2, 3, 3>{}, Layout<Shape<_32, _8>, Stride<_1, _32>>{}));
99
114
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{},
100
115
  Step<_2, _1>{}));
101
- using Copy = SM75_U16x8_LDSM_T;
116
+ using Copy = typename SelectCopy<N, num_warp_n, false>::type;
102
117
  };
103
118
 
104
119
  template <int N, int K, int num_warp_n>
@@ -108,7 +123,7 @@ struct OperandTraits<16, N, K, false, num_warp_n,
108
123
  Swizzle<3, 3, 3>{}, Layout<Shape<_64, _8>, Stride<_1, _64>>{}));
109
124
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{},
110
125
  Step<_2, _1>{}));
111
- using Copy = SM75_U16x8_LDSM_T;
126
+ using Copy = typename SelectCopy<N, num_warp_n, false>::type;
112
127
  };
113
128
 
114
129
  template <int N, int K, int num_warp_n>
@@ -117,8 +132,7 @@ struct OperandTraits<32, N, K, true, num_warp_n,
117
132
  using LayoutAtom = decltype(composition(
118
133
  Swizzle<3, 2, 3>{}, Layout<Shape<_8, _32>, Stride<_32, _1>>{}));
119
134
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{}));
120
- using Copy = typename std::conditional<N == 8 * num_warp_n, SM75_U32x2_LDSM_N,
121
- SM75_U32x4_LDSM_N>::type;
135
+ using Copy = typename SelectCopy<N, num_warp_n, true>::type;
122
136
  };
123
137
 
124
138
  template <int N, int K, int num_warp_n>
@@ -127,8 +141,7 @@ struct OperandTraits<32, N, K, true, num_warp_n,
127
141
  using LayoutAtom = decltype(composition(
128
142
  Swizzle<2, 2, 3>{}, Layout<Shape<_8, _16>, Stride<_16, _1>>{}));
129
143
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{}));
130
- using Copy = typename std::conditional<N == 8 * num_warp_n, SM75_U32x2_LDSM_N,
131
- SM75_U32x4_LDSM_N>::type;
144
+ using Copy = typename SelectCopy<N, num_warp_n, true>::type;
132
145
  };
133
146
 
134
147
  template <int N, int K, int num_warp_n>
@@ -157,7 +170,7 @@ struct OperandTraits<8, N, K, true, num_warp_n,
157
170
  using LayoutAtom = decltype(composition(
158
171
  Swizzle<2, 4, 3>{}, Layout<Shape<_8, _64>, Stride<_64, _1>>{}));
159
172
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{}));
160
- using Copy = SM75_U32x4_LDSM_N;
173
+ using Copy = typename SelectCopy<N, num_warp_n, true>::type;
161
174
  };
162
175
 
163
176
  template <int N, int K, int num_warp_n>
@@ -166,8 +179,7 @@ struct OperandTraits<8, N, K, true, num_warp_n,
166
179
  using LayoutAtom = decltype(composition(
167
180
  Swizzle<3, 4, 3>{}, Layout<Shape<_8, _128>, Stride<_128, _1>>{}));
168
181
  using Layout = decltype(tile_to_shape(LayoutAtom{}, Shape<Int<N>, Int<K>>{}));
169
- using Copy = typename std::conditional<N == 8 * num_warp_n, SM75_U32x2_LDSM_N,
170
- SM75_U32x4_LDSM_N>::type;
182
+ using Copy = typename SelectCopy<N, num_warp_n, true>::type;
171
183
  };
172
184
 
173
185
  template <int N, int K, int num_warp_n>