|
@@ -1,8 +1,8 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
- * Copyright (C) 2009, 2010-2011, 2013-2015 Université de Bordeaux
|
|
|
- * Copyright (C) 2010, 2011, 2012, 2013, 2014 CNRS
|
|
|
- * Copyright (C) 2012 INRIA
|
|
|
+ * Copyright (C) 2012,2013,2017 Inria
|
|
|
+ * Copyright (C) 2010-2015,2017,2019 CNRS
|
|
|
+ * Copyright (C) 2009-2011,2013-2015 Université de Bordeaux
|
|
|
*
|
|
|
* StarPU is free software; you can redistribute it and/or modify
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
@@ -51,7 +51,12 @@ int main(int argc, char **argv)
|
|
|
unsigned i;
|
|
|
unsigned niter = 50;
|
|
|
|
|
|
- ret = starpu_init(NULL);
|
|
|
+ struct starpu_conf conf;
|
|
|
+ starpu_conf_init(&conf);
|
|
|
+ conf.nmic = 0;
|
|
|
+ conf.nmpi_ms = 0;
|
|
|
+
|
|
|
+ ret = starpu_init(&conf);
|
|
|
if (ret == -ENODEV) return 77;
|
|
|
STARPU_CHECK_RETURN_VALUE(ret, "starpu_init");
|
|
|
|