Increase max_num_graph_transformation_steps from 5 to 10 (#2633)

This commit is contained in:
Jeff 2019-12-16 14:17:37 -08:00 committed by GitHub
parent 9dddabf237
commit b38b36a941
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,7 @@ struct SessionOptions {
int session_log_severity_level = -1;
int session_log_verbosity_level = 0; ///< VLOG level if debug build and session_log_severity_level is 0 (VERBOSE).
unsigned max_num_graph_transformation_steps = 5; // TODO choose a good default here?
unsigned max_num_graph_transformation_steps = 10; // TODO choose a good default here?
// set graph optimization level
TransformerLevel graph_optimization_level = TransformerLevel::Level1;