tilelang.utils.deprecated ========================= .. py:module:: tilelang.utils.deprecated Functions --------- .. autoapisummary:: tilelang.utils.deprecated.deprecated_warning tilelang.utils.deprecated.deprecated Module Contents --------------- .. py:function:: deprecated_warning(method_name, new_method_name, phaseout_version = None) A function to indicate that a method is deprecated .. py:function:: deprecated(method_name, new_method_name, phaseout_version = None) A decorator to indicate that a method is deprecated :param method_name: The name of the method to deprecate :type method_name: str :param new_method_name: The name of the new method to use instead :type new_method_name: str :param phaseout_version: The version to phase out the method :type phaseout_version: str