Просмотр исходного кода

src/core/workers.c: gordon_func is not a pointer, but a uint8_t

Nathalie Furmento лет назад: 14
Родитель
Сommit
42b0dcc879
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/workers.c

+ 1 - 1
src/core/workers.c

@@ -83,7 +83,7 @@ static int _starpu_may_use_nth_implementation(enum starpu_archtype arch, struct
 			cl->opencl_funcs[nimpl] == NULL);
 	case STARPU_GORDON_WORKER:
 		return !(cl->gordon_func == STARPU_MULTIPLE_GORDON_IMPLEMENTATIONS &&
-			cl->gordon_funcs[nimpl] == NULL);
+			cl->gordon_funcs[nimpl] == 0);
 	default:
 		return 0;
 	}