Skip to content

Commit 27e6f75

Browse files
committed
enable stats in souffle profiling log
1 parent f6780f5 commit 27e6f75

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

godel-script/godel-frontend/src/engine.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,12 @@ void engine::run_souffle(const std::string& souffle_content,
397397
if (config.count(option::cli_enable_souffle_profiling)) {
398398
argv.push_back("--profile=souffle.prof.log");
399399
argv.push_back("--profile-frequency");
400+
argv.push_back("--index-stats");
400401
}
401402

403+
// enable souffle auto schedule, for experimental use only
404+
// argv.push_back("--auto-schedule=souffle.prof.log");
405+
402406
// null terminator
403407
argv.push_back(nullptr);
404408

0 commit comments

Comments
 (0)