Skip to content

Commit

Permalink
Merge pull request #21 from FPSG-UIUC/modeling
Browse files Browse the repository at this point in the history
Update performance modeling
  • Loading branch information
nandeeka authored Oct 26, 2023
2 parents 795e5be + cb89745 commit 9738e0d
Show file tree
Hide file tree
Showing 57 changed files with 8,630 additions and 1,991 deletions.
12 changes: 12 additions & 0 deletions teaal/hifiber/op.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,18 @@ def gen(self) -> str:
return "*"


class ONotIn(Operator):
"""
The HiFiber not in operator
"""

def gen(self) -> str:
"""
Generate the HiFiber code for the ONotIn operator
"""
return "not in"


class OOr(Operator):
"""
The HiFiber or operator
Expand Down
Loading

0 comments on commit 9738e0d

Please sign in to comment.