소스 검색

Fix display message for eager-like modularized schedulers

Marc Sergent 11 년 전
부모
커밋
0a41441da1
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      src/sched_policies/modular_eager.c
  2. 1 1
      src/sched_policies/modular_eager_prefetching.c

+ 1 - 1
src/sched_policies/modular_eager.c

@@ -20,7 +20,7 @@
 
 static void initialize_eager_center_policy(unsigned sched_ctx_id)
 {
-	_STARPU_DISP("Warning: you are running the default tree-eager scheduler, which is not very smart. Make sure to read the StarPU documentation about adding performance models in order to be able to use the tree-heft scheduler instead.\n");
+	_STARPU_DISP("Warning: you are running the default modular-eager scheduler, which is not very smart. Make sure to read the StarPU documentation about adding performance models in order to be able to use the modular-heft scheduler instead.\n");
 
 	starpu_sched_ctx_create_worker_collection(sched_ctx_id, STARPU_WORKER_LIST);
 	struct starpu_sched_tree *t = starpu_sched_tree_create(sched_ctx_id);

+ 1 - 1
src/sched_policies/modular_eager_prefetching.c

@@ -26,7 +26,7 @@ static void initialize_eager_prefetching_center_policy(unsigned sched_ctx_id)
 	unsigned ntasks_threshold = _STARPU_SCHED_NTASKS_THRESHOLD_DEFAULT;
 	double exp_len_threshold = _STARPU_SCHED_EXP_LEN_THRESHOLD_DEFAULT;
 
-	_STARPU_DISP("Warning: you are running the default tree-eager-prefetching scheduler, which is not very smart. Make sure to read the StarPU documentation about adding performance models in order to be able to use the tree-heft scheduler instead.\n");
+	_STARPU_DISP("Warning: you are running the default modular-eager-prefetching scheduler, which is not very smart. Make sure to read the StarPU documentation about adding performance models in order to be able to use the modular-heft scheduler instead.\n");
 
 	starpu_sched_ctx_create_worker_collection(sched_ctx_id, STARPU_WORKER_LIST);
 	const char *strval_ntasks_threshold = getenv("STARPU_NTASKS_THRESHOLD");