fix(bench): Compiler options was badly set

This commit is contained in:
Quentin Bourgerie
2022-11-04 10:55:13 +01:00
parent 018684fe2a
commit 46ec919abf

View File

@@ -131,10 +131,11 @@ static int registerEndToEndTestFromFile(std::string prefix, std::string path,
};
setCurrentStackLimit(stackSizeRequirement);
mlir::concretelang::CompilationOptions defaul;
defaul.loopParallelize = true;
registe("default", defaul);
// Run only parallelized benchmarks to take advantage of hardware with lots of
// CPU cores.
defaul.loopParallelize = true;
// mlir::concretelang::CompilationOptions loop;
// loop.loopParallelize = true;
// registe("loop", loop);