@@ -697,9 +697,6 @@ int TestSettings::FromConfig(const std::string &path, const std::string &model,
697
697
lookupkv (model, scenario, " sample_index_rng_seed" , &sample_index_rng_seed,
698
698
nullptr );
699
699
lookupkv (model, scenario, " schedule_rng_seed" , &schedule_rng_seed, nullptr );
700
- if (lookupkv (model, scenario, " sample_concatenate_permutation" , &val,
701
- nullptr ))
702
- sample_concatenate_permutation = (val == 1 ) ? true : false ;
703
700
lookupkv (model, scenario, " accuracy_log_probability" , nullptr ,
704
701
&accuracy_log_probability, 0.01 );
705
702
if (lookupkv (model, scenario, " test05" , &val, nullptr ))
@@ -759,6 +756,9 @@ int TestSettings::FromConfig(const std::string &path, const std::string &model,
759
756
lookupkv (model, scenario, " performance_issue_same_index" ,
760
757
&performance_issue_same_index, nullptr );
761
758
759
+ if (lookupkv (model, scenario, " sample_concatenate_permutation" , &val,
760
+ nullptr ))
761
+ sample_concatenate_permutation = (val == 1 ) ? true : false ;
762
762
if (lookupkv (model, " Server" , " coalesce_queries" , &val, nullptr ))
763
763
server_coalesce_queries = (val == 0 ) ? false : true ;
764
764
if (lookupkv (model, " Server" , " max_async_queries" , &val, nullptr ))
0 commit comments