use tract_core::internal::*;
pub fn plan_options_from_subcommand(sub_matches: &clap::ArgMatches) -> TractResult<RunOptions> {
let skip_order_opt_ram: bool = sub_matches.get_flag("skip-order-opt-ram");
if skip_order_opt_ram {
log::info!("Plan options: skip_order_opt_ram -> {skip_order_opt_ram:?}");
}
Ok(RunOptions { skip_order_opt_ram, ..RunOptions::default() })
}