Skip to content

Commit

Permalink
Fix fake dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Dec 14, 2023
1 parent 2965ec3 commit 2b40462
Show file tree
Hide file tree
Showing 3 changed files with 813 additions and 1,192 deletions.
4 changes: 4 additions & 0 deletions code/gen_measure.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@
else:
depend_i_begin = 1
for depend_i in range(depend_i_begin, len(fmt_parts)):
if not (fmt_parts[depend_i].startswith('v') or fmt_parts[depend_i].startswith('x')):
# not a real dependency
continue

ops = []
for i, part in enumerate(fmt_parts):
if part.startswith("v"):
Expand Down
Loading

0 comments on commit 2b40462

Please sign in to comment.