|
@@ -1,7 +1,8 @@
|
|
|
|
|
|
*
|
|
|
- * Copyright (C) 2009, 2010 Université de Bordeaux 1
|
|
|
- * Copyright (C) 2010 Centre National de la Recherche Scientifique
|
|
|
+ * Copyright (C) 2009, 2010-2011 Université de Bordeaux 1
|
|
|
+ * Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
|
|
|
+ * Copyright (C) 2011 Télécom-SudParis
|
|
|
*
|
|
|
* 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
|
|
@@ -26,7 +27,7 @@
|
|
|
|
|
|
#include <starpu.h>
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
#ifdef USE_PERTURBATION
|
|
|
#define PERTURBATE(a) ((starpu_drand48()*2.0f*(AMPL) + 1.0f - (AMPL))*(a))
|
|
@@ -43,7 +44,7 @@ static double cpu_chol_task_11_cost(starpu_buffer_descr *descr)
|
|
|
double cost = (((double)(n)*n*n)/1000.0f*0.894/0.79176);
|
|
|
|
|
|
#ifdef STARPU_MODEL_DEBUG
|
|
|
- printf("cpu_chol_task_11_cost n %d cost %e\n", n, cost);
|
|
|
+ FPRINTF(stdout, "cpu_chol_task_11_cost n %d cost %e\n", n, cost);
|
|
|
#endif
|
|
|
|
|
|
return PERTURBATE(cost);
|
|
@@ -58,7 +59,7 @@ static double cuda_chol_task_11_cost(starpu_buffer_descr *descr)
|
|
|
double cost = (((double)(n)*n*n)/50.0f/10.75/5.088633/0.9883);
|
|
|
|
|
|
#ifdef STARPU_MODEL_DEBUG
|
|
|
- printf("cuda_chol_task_11_cost n %d cost %e\n", n, cost);
|
|
|
+ FPRINTF(stdout, "cuda_chol_task_11_cost n %d cost %e\n", n, cost);
|
|
|
#endif
|
|
|
|
|
|
return PERTURBATE(cost);
|
|
@@ -73,7 +74,7 @@ static double cpu_chol_task_21_cost(starpu_buffer_descr *descr)
|
|
|
double cost = (((double)(n)*n*n)/7706.674/0.95/0.9965);
|
|
|
|
|
|
#ifdef STARPU_MODEL_DEBUG
|
|
|
- printf("cpu_chol_task_21_cost n %d cost %e\n", n, cost);
|
|
|
+ FPRINTF(stdout, "cpu_chol_task_21_cost n %d cost %e\n", n, cost);
|
|
|
#endif
|
|
|
|
|
|
return PERTURBATE(cost);
|
|
@@ -88,7 +89,7 @@ static double cuda_chol_task_21_cost(starpu_buffer_descr *descr)
|
|
|
double cost = (((double)(n)*n*n)/50.0f/10.75/87.29520);
|
|
|
|
|
|
#ifdef STARPU_MODEL_DEBUG
|
|
|
- printf("cuda_chol_task_21_cost n %d cost %e\n", n, cost);
|
|
|
+ FPRINTF(stdout, "cuda_chol_task_21_cost n %d cost %e\n", n, cost);
|
|
|
#endif
|
|
|
|
|
|
return PERTURBATE(cost);
|
|
@@ -103,7 +104,7 @@ static double cpu_chol_task_22_cost(starpu_buffer_descr *descr)
|
|
|
double cost = (((double)(n)*n*n)/50.0f/10.75/8.0760);
|
|
|
|
|
|
#ifdef STARPU_MODEL_DEBUG
|
|
|
- printf("cpu_chol_task_22_cost n %d cost %e\n", n, cost);
|
|
|
+ FPRINTF(stdout, "cpu_chol_task_22_cost n %d cost %e\n", n, cost);
|
|
|
#endif
|
|
|
|
|
|
return PERTURBATE(cost);
|
|
@@ -118,34 +119,34 @@ static double cuda_chol_task_22_cost(starpu_buffer_descr *descr)
|
|
|
double cost = (((double)(n)*n*n)/50.0f/10.75/76.30666);
|
|
|
|
|
|
#ifdef STARPU_MODEL_DEBUG
|
|
|
- printf("cuda_chol_task_22_cost n %d cost %e\n", n, cost);
|
|
|
+ FPRINTF(stdout, "cuda_chol_task_22_cost n %d cost %e\n", n, cost);
|
|
|
#endif
|
|
|
|
|
|
return PERTURBATE(cost);
|
|
|
}
|
|
|
|
|
|
struct starpu_perfmodel_t chol_model_11 = {
|
|
|
- .per_arch = {
|
|
|
- [STARPU_CPU_DEFAULT] = { .cost_model = cpu_chol_task_11_cost },
|
|
|
- [STARPU_CUDA_DEFAULT] = { .cost_model = cuda_chol_task_11_cost }
|
|
|
+ .per_arch = {
|
|
|
+ [STARPU_CPU_DEFAULT][0] = { .cost_model = cpu_chol_task_11_cost },
|
|
|
+ [STARPU_CUDA_DEFAULT][0] = { .cost_model = cuda_chol_task_11_cost }
|
|
|
},
|
|
|
.type = STARPU_HISTORY_BASED,
|
|
|
.symbol = "chol_model_11"
|
|
|
};
|
|
|
|
|
|
struct starpu_perfmodel_t chol_model_21 = {
|
|
|
- .per_arch = {
|
|
|
- [STARPU_CPU_DEFAULT] = { .cost_model = cpu_chol_task_21_cost },
|
|
|
- [STARPU_CUDA_DEFAULT] = { .cost_model = cuda_chol_task_21_cost }
|
|
|
+ .per_arch = {
|
|
|
+ [STARPU_CPU_DEFAULT][0] = { .cost_model = cpu_chol_task_21_cost },
|
|
|
+ [STARPU_CUDA_DEFAULT][0] = { .cost_model = cuda_chol_task_21_cost }
|
|
|
},
|
|
|
.type = STARPU_HISTORY_BASED,
|
|
|
.symbol = "chol_model_21"
|
|
|
};
|
|
|
|
|
|
struct starpu_perfmodel_t chol_model_22 = {
|
|
|
- .per_arch = {
|
|
|
- [STARPU_CPU_DEFAULT] = { .cost_model = cpu_chol_task_22_cost },
|
|
|
- [STARPU_CUDA_DEFAULT] = { .cost_model = cuda_chol_task_22_cost }
|
|
|
+ .per_arch = {
|
|
|
+ [STARPU_CPU_DEFAULT][0] = { .cost_model = cpu_chol_task_22_cost },
|
|
|
+ [STARPU_CUDA_DEFAULT][0] = { .cost_model = cuda_chol_task_22_cost }
|
|
|
},
|
|
|
.type = STARPU_HISTORY_BASED,
|
|
|
.symbol = "chol_model_22"
|