|
@@ -1,6 +1,6 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
- * Copyright (C) 2019-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
|
|
|
+ * Copyright (C) 2019-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
|
|
|
*
|
|
|
* 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
|
|
@@ -192,7 +192,7 @@ static void init_device_context(unsigned devid)
|
|
|
if (!strcmp(load->engine_id_pattern, "*"))
|
|
|
{
|
|
|
char s[32];
|
|
|
- snprintf(s, sizeof(s), "local:%u", (unsigned) devid);
|
|
|
+ snprintf(s, sizeof(s), "*:%u", (unsigned) devid);
|
|
|
/* FIXME: this assumes that the loads are in-order.
|
|
|
* Ideally we'd detect which ones had an explicit load */
|
|
|
engines[devid] = max_load(load->file, load->engine_id_pattern);
|