소스 검색

Fix a typo

Cédric Augonnet 14 년 전
부모
커밋
d6bdf7f9ff
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/core/perfmodel/perfmodel.c

+ 1 - 1
src/core/perfmodel/perfmodel.c

@@ -177,7 +177,7 @@ double starpu_task_expected_power(struct starpu_task *task, enum starpu_perf_arc
 double starpu_data_expected_transfer_time(starpu_data_handle handle, unsigned memory_node, starpu_access_mode mode)
 {
 	/* If we don't need to read the content of the handle */
-	if (!mode & STARPU_R)
+	if (!(mode & STARPU_R))
 		return 0.0;
 	
 	if (_starpu_is_data_present_or_requested(handle, memory_node))