@@ -450,17 +450,17 @@ bool isInputDynamic(PartitioningCtx* ctx) {
450
450
return input_is_dynamic;
451
451
}
452
452
453
- void populateInputIValues (PartitioningCtx* ctx){
453
+ void populateInputIValues (PartitioningCtx* ctx) {
454
454
if (isInputDynamic (ctx)) {
455
- ctx->min_input_ivalues_map =
456
- partitioning::generateRandomInputs ( ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kMIN );
457
- ctx->opt_input_ivalues_map =
458
- partitioning::generateRandomInputs ( ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kOPT );
459
- ctx->max_input_ivalues_map =
460
- partitioning::generateRandomInputs ( ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kMAX );
455
+ ctx->min_input_ivalues_map = partitioning::generateRandomInputs (
456
+ ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kMIN );
457
+ ctx->opt_input_ivalues_map = partitioning::generateRandomInputs (
458
+ ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kOPT );
459
+ ctx->max_input_ivalues_map = partitioning::generateRandomInputs (
460
+ ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kMAX );
461
461
} else {
462
- ctx->opt_input_ivalues_map =
463
- partitioning::generateRandomInputs ( ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kOPT );
462
+ ctx->opt_input_ivalues_map = partitioning::generateRandomInputs (
463
+ ctx->settings .collection_input_spec_map , ctx->input_types_map , ir::ShapeMode::kOPT );
464
464
}
465
465
}
466
466
0 commit comments