diff --git a/3rdparty/tvm b/3rdparty/tvm index 5ec6171dd..4307584d7 160000 --- a/3rdparty/tvm +++ b/3rdparty/tvm @@ -1 +1 @@ -Subproject commit 5ec6171dd779b3bb80634fc950bd32b4bca12659 +Subproject commit 4307584d77fa920a1b3536bd2bc6f6d566406860 diff --git a/bitblas/testing/__init__.py b/bitblas/testing/__init__.py index b8442adcf..a147503f3 100644 --- a/bitblas/testing/__init__.py +++ b/bitblas/testing/__init__.py @@ -84,7 +84,7 @@ def torch_assert_close(tensor_a, if num_mismatched > max_allowed_mismatched: raise AssertionError( f"Too many mismatched elements: {num_mismatched} > {max_allowed_mismatched} " - f"({max_mismatched_ratio * 100:.2f}% allowed). " + f"({max_mismatched_ratio * 100:.2f}% allowed, but get {num_mismatched / total_elements * 100:.2f}%). " f"Greatest absolute difference: {diff.max().item()}, " f"Greatest relative difference: {(diff / (torch.abs(tensor_b) + 1e-12)).max().item()}.") else: