瀏覽代碼

Merge branch 'fpga' of gitlab.inria.fr:starpu/starpu into fpga

Samuel Thibault 4 年之前
父節點
當前提交
67eaee07af
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/drivers/max/driver_fpga.c

+ 2 - 2
src/drivers/max/driver_fpga.c

@@ -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);