Samuel Thibault лет назад: 5
Родитель
Сommit
bb352dc0d9

+ 1 - 1
src/sched_policies/modular_parallel_heft.c

@@ -50,7 +50,7 @@
 
 static void initialize_parallel_heft_center_policy(unsigned sched_ctx_id)
 {
-	_STARPU_DISP("Warning: the modular-pheft scheduler is mostly a proof of concept and not really very optimized");
+	_STARPU_DISP("Warning: the modular-pheft scheduler is mostly a proof of concept and not really very optimized\n");
 
 	starpu_sched_component_initialize_simple_scheduler((starpu_sched_component_create_t) starpu_sched_component_mct_create, NULL,
 			STARPU_SCHED_SIMPLE_DECIDE_WORKERS |

+ 1 - 1
src/sched_policies/parallel_eager.c

@@ -163,7 +163,7 @@ static void initialize_peager_policy(unsigned sched_ctx_id)
 	struct _starpu_peager_data *data;
 	_STARPU_CALLOC(data, 1, sizeof(struct _starpu_peager_data));
 
-	_STARPU_DISP("Warning: the peager scheduler is mostly a proof of concept and not really very optimized");
+	_STARPU_DISP("Warning: the peager scheduler is mostly a proof of concept and not really very optimized\n");
 
 	/* masters pick tasks from that queue */
 	data->fifo = _starpu_create_fifo();

+ 1 - 1
src/sched_policies/parallel_heft.c

@@ -544,7 +544,7 @@ static void initialize_parallel_heft_policy(unsigned sched_ctx_id)
 	struct _starpu_pheft_data *hd;
 	_STARPU_MALLOC(hd, sizeof(struct _starpu_pheft_data));
 
-	_STARPU_DISP("Warning: the pheft scheduler is mostly a proof of concept and not really very optimized");
+	_STARPU_DISP("Warning: the pheft scheduler is mostly a proof of concept and not really very optimized\n");
 
 	if (starpu_sched_ctx_min_priority_is_set(sched_ctx_id) == 0)
 		starpu_sched_ctx_set_min_priority(sched_ctx_id, DEFAULT_MIN_PRIORITY);