def hash_to_hex()

in deep_gemm/jit/compiler.py [0:0]


def hash_to_hex(s: str) -> str:
    md5 = hashlib.md5()
    md5.update(s.encode('utf-8'))
    return md5.hexdigest()[0:12]