diff --git a/scripts/intrinsics_coverage.py b/scripts/intrinsics_coverage.py index 5bd5b621..ba24cab5 100644 --- a/scripts/intrinsics_coverage.py +++ b/scripts/intrinsics_coverage.py @@ -9,7 +9,12 @@ def read_file(file_path): return file.readlines() def expect_impl(s): - not_impl_list = ["p8", "p16", "p32", "p64", "f16"] + not_impl_list = ["p8", "p16", "p32", "p128", "p64", "f16"] + + # print the intrinsics that haven't implemented by expected to + # if not any(not_impl in s for not_impl in not_impl_list): + # if ("// FORCE_INLINE" in s): + # print(s) return not any(not_impl in s for not_impl in not_impl_list) def is_impl(s):