We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6780f5 commit 27e6f75Copy full SHA for 27e6f75
godel-script/godel-frontend/src/engine.cpp
@@ -397,8 +397,12 @@ void engine::run_souffle(const std::string& souffle_content,
397
if (config.count(option::cli_enable_souffle_profiling)) {
398
argv.push_back("--profile=souffle.prof.log");
399
argv.push_back("--profile-frequency");
400
+ argv.push_back("--index-stats");
401
}
402
403
+ // enable souffle auto schedule, for experimental use only
404
+ // argv.push_back("--auto-schedule=souffle.prof.log");
405
+
406
// null terminator
407
argv.push_back(nullptr);
408
0 commit comments