瀏覽代碼

src/sched_policies/detect_combined_workers.c: replacing find_combinations_without_hwloc by find_and_assign_combinations_without_hwloc.

This makes compilation possible even without hwloc (fix a regression introduced in rev. 4141).
Cyril Roelandt 13 年之前
父節點
當前提交
d7f7328c29
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/sched_policies/detect_combined_workers.c

+ 1 - 1
src/sched_policies/detect_combined_workers.c

@@ -481,7 +481,7 @@ void _starpu_sched_find_worker_combinations(struct starpu_machine_topology_s *to
 #ifdef STARPU_HAVE_HWLOC
 	find_and_assign_combinations_with_hwloc(topology);
 #else
-	find_combinations_without_hwloc(topology);
+	find_and_assign_combinations_without_hwloc(topology);
 #endif
     }
 }