Skip to content

Commit

Permalink
Grouper: implement dummy inst_group_[pro|epi]logue
Browse files Browse the repository at this point in the history
Signed-off-by: Jerry Zhang Jian <[email protected]>
  • Loading branch information
jerryzj committed Jun 19, 2024
1 parent 24f8219 commit 7134fef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions rvv-intrinsic-generator/rvv_intrinsic_gen/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,12 @@ def start_group(self, group_name):
if group_name not in self.groups:
self.groups[group_name] = []

def inst_group_prologue(self):
return ""

def inst_group_epilogue(self):
return ""

def func(self, inst_info, name, return_type, **kwargs):

func_name = Generator.func_name(name)
Expand Down

0 comments on commit 7134fef

Please sign in to comment.