[Refactor] Simplify interface via replacing argument thread binding of intrinsics with KernelFrame.Current
#34
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to multiple files to rename the variable
thread_bindingstothread_bindingand remove redundantthread_bindingsparameters from function calls. These changes improve code consistency and readability.Variable renaming and parameter removal:
examples/dequantize_gemm/example_dequant_gemm_fine_grained.py: Renamedthread_bindingstothread_bindingand removed redundantthread_bindingsparameters from function calls. [1] [2] [3] [4] [5]examples/gemm/README.md: Renamedthread_bindingstothread_bindingand removed redundantthread_bindingsparameters from function calls. [1] [2] [3] [4] [5]examples/gemm/example_gemm_intrinsics.py: Removed redundantthread_bindingsvariable and parameters from function calls. [1] [2]testing/python/amd/test_tilelang_gemm_mfma_intrinsic.py: Removed redundantthread_bindingsvariable and parameters from function calls. [1] [2] [3] [4]testing/python/dynamic/test_tilelang_dynamic_symbolic.py: Removed redundantthread_bindingsvariable and parameters from function calls. [1] [2] [3]testing/python/kernel/test_tilelang_kernel_dequantize_gemm.py: Renamed fromtest_tilelang_dequantize_gemm.py, renamedthread_bindingstothread_binding, and removed redundantthread_bindingsparameters from function calls. [1] [2] [3] [4] [5]testing/python/kernel/test_tilelang_kernel_gemm_mma_intrinsic.py: Renamed fromtest_tilelang_gemm_mma_intrinsic.py, renamedthread_bindingstothread_binding, and removed redundantthread_bindingsparameters from function calls. [1] [2] [3]testing/python/kernel/test_tilelang_kernel_int4_mma_matmul.py: Renamed fromtest_tilelang_int4_mma_matmul.py, renamedthread_bindingstothread_binding, and removed redundantthread_bindingsparameters from function calls. [1] [2] [3]