"git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "3ea9fe4c5246df752e3b2abc2cab7b2d369cecd3"
  • Lei Wang's avatar
    [Refactor] Introduce KernelParam integration across modules (#223) · 3de9f13c
    Lei Wang authored
    * [Refactor] Update KernelParam integration across modules
    
    - Replaced instances of TensorType with KernelParam in various modules to standardize parameter handling.
    - Updated JITKernel, BaseKernelAdapter, and CythonKernelAdapter to utilize KernelParam for improved type consistency.
    - Enhanced Profiler class to include KernelParam in its parameters, ensuring better integration with the new parameter structure.
    - Adjusted tensor handling in utility functions to accommodate the new KernelParam type, improving overall code clarity and maintainability.
    - Updated copyright headers to reflect the correct organization.
    
    * [Refactor] Clean up whitespace in kernel, profiler, and tensor modules
    
    - Added blank lines for improved readability in kernel.py, __init__.py, and tensor.py.
    - Enhanced code clarity by ensuring consistent formatting across these modules.
    
    * [Enhancement] Add detailed docstrings to KernelParam and Profiler classes
    
    - Enhanced KernelParam class with comprehensive docstrings for better understanding of its purpose and methods.
    - Updated Profiler class to include detailed docstrings for its attributes and methods, improving code documentation and usability.
    - Removed unused do_bench function to streamline the profiler module and improve clarity.
    
    * [Refactor] Update type hints in do_bench function and clean up whitespace in profiler module
    
    - Changed type hints for grad_to_none and quantiles parameters in do_bench function to use Optional for better clarity.
    - Added a blank line in __init__.py for improved readability and consistency in the profiler module.
    
    * [Refactor] Update type hint in do_bench function for consistency
    
    - Changed the return type hint in the do_bench function from a union type to a more explicit List type for better clarity and consistency in type annotations.
    
    * [Refactor] Update return type hint in do_bench function for clarity
    
    - Changed the return type hint in the do_bench function from a union type to Union[float, List[float]] for improved clarity and consistency in type annotations.
    
    * [Enhancement] Add func property to Profiler class for adapter access
    
    - Introduced a new property `func` in the Profiler class to provide access to the adapter, ensuring that the adapter is set before retrieval. This enhancement improves the usability of the Profiler class by allowing easier access to the adapter functionality.
    
    * [Refactor] Update kernel compilation and profiling in tests
    
    - Replaced instances of `TL.lower` and `TL.Profiler` with `tilelang.compile` and the new profiler interface across multiple test files.
    - Enhanced the kernel compilation process to utilize the updated API, improving consistency and maintainability in the testing framework.
    - Updated assertions to use the new profiler methods for better clarity and functionality in performance testing.
    
    * [Refactor] Simplify kernel invocation and remove unused parameters in tests
    
    - Updated the kernel invocation in `test_tilelang_dynamic_symbolic.py` to directly assign the result to `C`, improving clarity.
    - Removed the `execution_backend` parameter from `tilelang.compile` calls in `test_tilelang_jit_callback.py` and `test_tilelang_jit_gemm.py` for consistency with the updated API.
    - Commented out the call to `tilelang.testing.main()` in `test_tilelang_jit_callback.py` and replaced it with a direct call to `test_gemm_jit_kernel()` to streamline test execution.
    - Adjusted the dtype mapping in `TorchDLPackKernelAdapter` to use the parameter's dtype directly, enhancing code simplicity.
    
    * [Refactor] Remove unused imports in test files for cleaner code
    
    - Eliminated unnecessary imports of `tilelang` as `TL` in various test files to enhance code clarity and maintainability.
    - Updated multiple test files to streamline the codebase and reduce potential confusion from unused references.
    
    * [Refactor] Simplify kernel invocation in tilelang kernel test
    
    - Updated the kernel invocation in `test_tilelang_kernel_bf16_gemm_mma.py` to directly assign the result to `C`, enhancing code clarity and consistency with recent changes in the API.
    
    * [Refactor] Simplify kernel invocation in tilelang kernel tests
    
    - Updated kernel invocations in multiple test files to directly assign the result to `C`, improving code clarity and consistency with the updated API.
    - Removed unnecessary initialization of `C` as a zero tensor, streamlining the code further.
    
    * [Refactor] Update kernel invocation in tilelang transform tests
    
    - Replaced the use of `TL.Profiler` with `tilelang.compile` in `test_tilelang_transform_simplify.py`, enhancing code clarity and consistency with the updated API.
    - Streamlined the kernel invocation process by directly assigning the result to `C`, improving readability and maintainability of the test code.
    3de9f13c
test_tilelang_gemm_mfma_intrinsic.py 6.21 KB