jordiae commited on
Commit
7e95be1
·
1 Parent(s): f935ace

Update exebench.py

Browse files
Files changed (1) hide show
  1. exebench.py +2 -0
exebench.py CHANGED
@@ -209,6 +209,8 @@ class ExeBench(datasets.GeneratorBasedBuilder):
209
  row['angha_iospec'] = None
210
  if 'real_iospec' not in row:
211
  row['real_iospec'] = None
 
 
212
  row['asm'] = [{'target': target, 'code': code['func_asm'] if code else None} for (target, code) in
213
  row['asm'].items()] # TODO: pre_asm etc
214
  for removed_key in _REMOVED_FEATURES:
 
209
  row['angha_iospec'] = None
210
  if 'real_iospec' not in row:
211
  row['real_iospec'] = None
212
+ if 'func_head_types' not in row:
213
+ row['func_head_types'] = ''
214
  row['asm'] = [{'target': target, 'code': code['func_asm'] if code else None} for (target, code) in
215
  row['asm'].items()] # TODO: pre_asm etc
216
  for removed_key in _REMOVED_FEATURES: