Ver código fonte

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

Nathalie Furmento 14 anos atrás
pai
commit
42b0dcc879
1 arquivos alterados com 1 adições e 1 exclusões
  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;
 	}