|
@@ -73,7 +73,7 @@ static struct starpu_perfmodel accumulate_variable_model = {
|
|
|
.symbol = "accumulate_variable"
|
|
|
};
|
|
|
|
|
|
-starpu_codelet accumulate_variable_cl = {
|
|
|
+struct starpu_codelet accumulate_variable_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = accumulate_variable_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -109,7 +109,7 @@ static struct starpu_perfmodel accumulate_vector_model = {
|
|
|
.symbol = "accumulate_vector"
|
|
|
};
|
|
|
|
|
|
-starpu_codelet accumulate_vector_cl = {
|
|
|
+struct starpu_codelet accumulate_vector_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = accumulate_vector_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -147,7 +147,7 @@ static struct starpu_perfmodel bzero_variable_model = {
|
|
|
.symbol = "bzero_variable"
|
|
|
};
|
|
|
|
|
|
-starpu_codelet bzero_variable_cl = {
|
|
|
+struct starpu_codelet bzero_variable_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = bzero_variable_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -182,7 +182,7 @@ static struct starpu_perfmodel bzero_vector_model = {
|
|
|
.symbol = "bzero_vector"
|
|
|
};
|
|
|
|
|
|
-starpu_codelet bzero_vector_cl = {
|
|
|
+struct starpu_codelet bzero_vector_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = bzero_vector_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -235,7 +235,7 @@ static struct starpu_perfmodel dot_kernel_model = {
|
|
|
.symbol = "dot_kernel"
|
|
|
};
|
|
|
|
|
|
-static starpu_codelet dot_kernel_cl = {
|
|
|
+static struct starpu_codelet dot_kernel_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = dot_kernel_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -302,7 +302,7 @@ static struct starpu_perfmodel scal_kernel_model = {
|
|
|
.symbol = "scal_kernel"
|
|
|
};
|
|
|
|
|
|
-static starpu_codelet scal_kernel_cl = {
|
|
|
+static struct starpu_codelet scal_kernel_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = scal_kernel_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -373,7 +373,7 @@ static struct starpu_perfmodel gemv_kernel_model = {
|
|
|
.symbol = "gemv_kernel"
|
|
|
};
|
|
|
|
|
|
-static starpu_codelet gemv_kernel_cl = {
|
|
|
+static struct starpu_codelet gemv_kernel_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.type = STARPU_SPMD,
|
|
|
.max_parallelism = INT_MAX,
|
|
@@ -465,7 +465,7 @@ static struct starpu_perfmodel scal_axpy_kernel_model = {
|
|
|
.symbol = "scal_axpy_kernel"
|
|
|
};
|
|
|
|
|
|
-static starpu_codelet scal_axpy_kernel_cl = {
|
|
|
+static struct starpu_codelet scal_axpy_kernel_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = scal_axpy_kernel_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -533,7 +533,7 @@ static struct starpu_perfmodel axpy_kernel_model = {
|
|
|
.symbol = "axpy_kernel"
|
|
|
};
|
|
|
|
|
|
-static starpu_codelet axpy_kernel_cl = {
|
|
|
+static struct starpu_codelet axpy_kernel_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = axpy_kernel_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|
|
@@ -593,7 +593,7 @@ static struct starpu_perfmodel copy_handle_model = {
|
|
|
.symbol = "copy_handle"
|
|
|
};
|
|
|
|
|
|
-static starpu_codelet copy_handle_cl = {
|
|
|
+static struct starpu_codelet copy_handle_cl = {
|
|
|
.where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_func = copy_handle_cpu,
|
|
|
#ifdef STARPU_USE_CUDA
|