@@ -450,17 +450,17 @@ bool isInputDynamic(PartitioningCtx* ctx) {
450450 return input_is_dynamic;
451451}
452452
453- void populateInputIValues (PartitioningCtx* ctx){
453+ void populateInputIValues (PartitioningCtx* ctx) {
454454 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 );
461461 } 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 );
464464 }
465465}
466466
0 commit comments