tilelang.language.logical ========================= .. py:module:: tilelang.language.logical .. autoapi-nested-parse:: The language interface for tl programs. Functions --------- .. autoapisummary:: tilelang.language.logical.any_of tilelang.language.logical.all_of Module Contents --------------- .. py:function:: any_of(buffer) Check if any element in the buffer is true. :param buffer: Either a TVM buffer or buffer region to be checked :returns: A TVM intrinsic call that performs the any operation .. py:function:: all_of(buffer) Check if all elements in the buffer are true. :param buffer: Either a TVM buffer or buffer region to be checked :returns: A TVM intrinsic call that performs the any operation