@@ -189,8 +189,8 @@ def ShouldSkipBenchmark(name):
189
189
],
190
190
}
191
191
192
- # mycpp-souffle only has three variants for now
193
- SOUFFLE_MATRIX = [
192
+ # mycpp-nosouffle only has three variants for now
193
+ NOSOUFFLE_MATRIX = [
194
194
('cxx' , 'opt' ), # for benchmarks
195
195
('cxx' , 'asan' ), # need this for running the examples in CI
196
196
('cxx' , 'asan+gcalways' ),
@@ -385,9 +385,10 @@ def MycppExamples(ru, ph):
385
385
386
386
## Translate the example 2 ways, and benchmark and test it
387
387
388
- for translator in ['mycpp' , 'mycpp-souffle ' ]:
388
+ for translator in ['mycpp' , 'mycpp-nosouffle ' ]:
389
389
390
- matrix = SOUFFLE_MATRIX if translator == 'mycpp-souffle' else COMPILERS_VARIANTS
390
+ matrix = (NOSOUFFLE_MATRIX if translator == 'mycpp-nosouffle' else
391
+ COMPILERS_VARIANTS )
391
392
phony_prefix = 'mycpp-examples' if translator == 'mycpp' else None
392
393
py_inputs = TRANSLATE_FILES .get (ex )
393
394
@@ -438,8 +439,8 @@ def MycppExamples(ru, ph):
438
439
b_example = '_bin/cxx-%s/mycpp/examples/%s.%s' % (variant , ex ,
439
440
translator )
440
441
impl = 'C++'
441
- if translator == 'mycpp-souffle ' :
442
- impl = 'C++-Souffle '
442
+ if translator == 'mycpp-nosouffle ' :
443
+ impl = 'C++-NoSouffle '
443
444
444
445
n .build ([task_out , cc_log_out ],
445
446
'example-task' , [b_example ],
0 commit comments