Skip to content

Commit

Permalink
Merge pull request #484 from howjmay/coverage
Browse files Browse the repository at this point in the history
chore: Fix the coverage script and update coverage
  • Loading branch information
howjmay authored Jul 30, 2024
2 parents 8c6013b + 48ce854 commit 7bd0452
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/intrinsics_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 7bd0452

Please sign in to comment.