|
@@ -1,7 +1,7 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
* Copyright (C) 2011-2012 Inria
|
|
|
- * Copyright (C) 2009-2017 Université de Bordeaux
|
|
|
+ * Copyright (C) 2009-2018 Université de Bordeaux
|
|
|
* Copyright (C) 2010-2012,2015,2017 CNRS
|
|
|
*
|
|
|
* StarPU is free software; you can redistribute it and/or modify
|
|
@@ -107,6 +107,8 @@ static struct starpu_perfmodel STARPU_LU(model_22) =
|
|
|
.symbol = STARPU_LU_STR(lu_model_22_atlas)
|
|
|
#elif defined(STARPU_GOTO)
|
|
|
.symbol = STARPU_LU_STR(lu_model_22_goto)
|
|
|
+#elif defined(STARPU_OPENBLAS)
|
|
|
+ .symbol = STARPU_LU_STR(lu_model_22_openblas)
|
|
|
#else
|
|
|
.symbol = STARPU_LU_STR(lu_model_22)
|
|
|
#endif
|
|
@@ -228,6 +230,8 @@ static struct starpu_perfmodel STARPU_LU(model_12) =
|
|
|
.symbol = STARPU_LU_STR(lu_model_12_atlas)
|
|
|
#elif defined(STARPU_GOTO)
|
|
|
.symbol = STARPU_LU_STR(lu_model_12_goto)
|
|
|
+#elif defined(STARPU_OPENBLAS)
|
|
|
+ .symbol = STARPU_LU_STR(lu_model_12_openblas)
|
|
|
#else
|
|
|
.symbol = STARPU_LU_STR(lu_model_12)
|
|
|
#endif
|
|
@@ -315,6 +319,8 @@ static struct starpu_perfmodel STARPU_LU(model_21) =
|
|
|
.symbol = STARPU_LU_STR(lu_model_21_atlas)
|
|
|
#elif defined(STARPU_GOTO)
|
|
|
.symbol = STARPU_LU_STR(lu_model_21_goto)
|
|
|
+#elif defined(STARPU_OPENBLAS)
|
|
|
+ .symbol = STARPU_LU_STR(lu_model_21_openblas)
|
|
|
#else
|
|
|
.symbol = STARPU_LU_STR(lu_model_21)
|
|
|
#endif
|
|
@@ -433,6 +439,8 @@ static struct starpu_perfmodel STARPU_LU(model_11) =
|
|
|
.symbol = STARPU_LU_STR(lu_model_11_atlas)
|
|
|
#elif defined(STARPU_GOTO)
|
|
|
.symbol = STARPU_LU_STR(lu_model_11_goto)
|
|
|
+#elif defined(STARPU_OPENBLAS)
|
|
|
+ .symbol = STARPU_LU_STR(lu_model_11_openblas)
|
|
|
#else
|
|
|
.symbol = STARPU_LU_STR(lu_model_11)
|
|
|
#endif
|
|
@@ -602,6 +610,8 @@ static struct starpu_perfmodel STARPU_LU(model_11_pivot) =
|
|
|
.symbol = STARPU_LU_STR(lu_model_11_pivot_atlas)
|
|
|
#elif defined(STARPU_GOTO)
|
|
|
.symbol = STARPU_LU_STR(lu_model_11_pivot_goto)
|
|
|
+#elif defined(STARPU_OPENBLAS)
|
|
|
+ .symbol = STARPU_LU_STR(lu_model_11_pivot_openblas)
|
|
|
#else
|
|
|
.symbol = STARPU_LU_STR(lu_model_11_pivot)
|
|
|
#endif
|
|
@@ -703,6 +713,8 @@ static struct starpu_perfmodel STARPU_LU(model_pivot) =
|
|
|
.symbol = STARPU_LU_STR(lu_model_pivot_atlas)
|
|
|
#elif defined(STARPU_GOTO)
|
|
|
.symbol = STARPU_LU_STR(lu_model_pivot_goto)
|
|
|
+#elif defined(STARPU_OPENBLAS)
|
|
|
+ .symbol = STARPU_LU_STR(lu_model_pivot_openblas)
|
|
|
#else
|
|
|
.symbol = STARPU_LU_STR(lu_model_pivot)
|
|
|
#endif
|