|
@@ -94,7 +94,6 @@ static struct starpu_perfmodel accumulate_variable_model =
|
|
|
struct starpu_codelet accumulate_variable_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {accumulate_variable_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {accumulate_variable_cuda, NULL},
|
|
@@ -133,7 +132,6 @@ static struct starpu_perfmodel accumulate_vector_model =
|
|
|
struct starpu_codelet accumulate_vector_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {accumulate_vector_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {accumulate_vector_cuda, NULL},
|
|
@@ -174,7 +172,6 @@ static struct starpu_perfmodel bzero_variable_model =
|
|
|
struct starpu_codelet bzero_variable_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {bzero_variable_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {bzero_variable_cuda, NULL},
|
|
@@ -212,7 +209,6 @@ static struct starpu_perfmodel bzero_vector_model =
|
|
|
struct starpu_codelet bzero_vector_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {bzero_vector_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {bzero_vector_cuda, NULL},
|
|
@@ -268,7 +264,6 @@ static struct starpu_perfmodel dot_kernel_model =
|
|
|
static struct starpu_codelet dot_kernel_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {dot_kernel_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {dot_kernel_cuda, NULL},
|
|
@@ -348,7 +343,6 @@ static struct starpu_perfmodel scal_kernel_model =
|
|
|
static struct starpu_codelet scal_kernel_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {scal_kernel_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {scal_kernel_cuda, NULL},
|
|
@@ -422,7 +416,6 @@ static struct starpu_perfmodel gemv_kernel_model =
|
|
|
static struct starpu_codelet gemv_kernel_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.type = STARPU_SPMD,
|
|
|
.max_parallelism = INT_MAX,
|
|
|
.cpu_funcs = {gemv_kernel_cpu, NULL},
|
|
@@ -522,7 +515,6 @@ static struct starpu_perfmodel scal_axpy_kernel_model =
|
|
|
static struct starpu_codelet scal_axpy_kernel_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {scal_axpy_kernel_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {scal_axpy_kernel_cuda, NULL},
|
|
@@ -597,7 +589,6 @@ static struct starpu_perfmodel axpy_kernel_model =
|
|
|
static struct starpu_codelet axpy_kernel_cl =
|
|
|
{
|
|
|
.can_execute = can_execute,
|
|
|
- .where = STARPU_CPU|STARPU_CUDA,
|
|
|
.cpu_funcs = {axpy_kernel_cpu, NULL},
|
|
|
#ifdef STARPU_USE_CUDA
|
|
|
.cuda_funcs = {axpy_kernel_cuda, NULL},
|