22 #ifndef DOXYGEN_SHOULD_SKIP_THIS
27 #include "sopalin/sopalin_data.h"
36 struct cl_blok_cpxtrfsp_args_s {
38 sopalin_data_t *sopalin_data;
42 #if defined(PASTIX_STARPU_PROFILING)
50 starpu_profile_t blok_cpxtrfsp_profile = {
52 .name =
"blok_cpxtrfsp"
58 void blok_cpxtrfsp_profile_register(
void ) __attribute__( ( constructor ) );
60 blok_cpxtrfsp_profile_register(
void )
62 profiling_register_cl( &blok_cpxtrfsp_profile );
65 #ifndef DOXYGEN_SHOULD_SKIP_THIS
66 #if defined(PASTIX_STARPU_PROFILING_LOG)
68 cl_profiling_cb_blok_cpxtrfsp(
void *callback_arg )
70 cl_profiling_callback( callback_arg );
72 struct starpu_task *task = starpu_task_get_current();
73 struct starpu_profiling_task_info *info = task->profiling_info;
80 struct cl_blok_cpxtrfsp_args_s *args = (
struct cl_blok_cpxtrfsp_args_s *) callback_arg;
82 pastix_fixdbl_t duration = starpu_timing_timespec_delay_us( &info->start_time, &info->end_time );
87 cl_profiling_log_register( task->name,
"blok_cpxtrfsp", N, 0, 0, flops, speed );
91 #if defined(PASTIX_STARPU_PROFILING_LOG)
92 static void (*blok_cpxtrfsp_callback)(
void*) = cl_profiling_cb_blok_cpxtrfsp;
94 static void (*blok_cpxtrfsp_callback)(
void*) = cl_profiling_callback;
100 #ifndef DOXYGEN_SHOULD_SKIP_THIS
127 fct_blok_cpxtrfsp_cost(
struct starpu_task *task,
128 struct starpu_perfmodel_arch *arch,
131 struct cl_blok_cpxtrfsp_args_s *args = (
struct cl_blok_cpxtrfsp_args_s *)(task->cl_arg);
137 switch( arch->devices->type ) {
138 case STARPU_CPU_WORKER:
139 coefs = &(args->sopalin_data->cpu_models->coefficients[PastixComplex32-2][
PastixKernelPXTRF][0]);
141 case STARPU_CUDA_WORKER:
142 coefs = &(args->sopalin_data->gpu_models->coefficients[PastixComplex32-2][
PastixKernelPXTRF][0]);
150 cost = modelsGetCost1Param( coefs, N );
156 static struct starpu_perfmodel starpu_blok_cpxtrfsp_model = {
157 #if defined(PASTIX_STARPU_COST_PER_ARCH)
158 .type = STARPU_PER_ARCH,
159 .arch_cost_function = fct_blok_cpxtrfsp_cost,
161 .type = STARPU_HISTORY_BASED,
163 .symbol =
"blok_cpxtrfsp",
167 #if !defined(PASTIX_STARPU_SIMULATION)
185 struct cl_blok_cpxtrfsp_args_s *args = (
struct cl_blok_cpxtrfsp_args_s *)cl_arg;
188 L = pastix_starpu_blok_get_ptr( descr[0] );
190 assert( args->cblk->cblktype & CBLK_TASKS_2D );
196 #ifndef DOXYGEN_SHOULD_SKIP_THIS
197 CODELETS_CPU( blok_cpxtrfsp, 1 );
222 struct cl_blok_cpxtrfsp_args_s *cl_arg = NULL;
224 #if defined(PASTIX_DEBUG_STARPU)
231 #if defined(PASTIX_WITH_MPI)
234 if ( cblk->
ownerid == sopalin_data->solvmtx->clustnum ) {
243 if ( !need_submit ) {
253 cl_arg = malloc(
sizeof(
struct cl_blok_cpxtrfsp_args_s) );
254 cl_arg->sopalin_data = sopalin_data;
255 #if defined(PASTIX_STARPU_PROFILING)
256 cl_arg->profile_data.measures = blok_cpxtrfsp_profile.measures;
257 cl_arg->profile_data.flops = NAN;
262 #if defined(PASTIX_DEBUG_STARPU)
264 asprintf( &task_name,
"%s( %ld )",
265 cl_blok_cpxtrfsp_cpu.name,
266 (
long)(cblk - sopalin_data->solvmtx->cblktab) );
269 pastix_starpu_insert_task(
270 &cl_blok_cpxtrfsp_cpu,
271 STARPU_CL_ARGS, cl_arg,
sizeof(
struct cl_blok_cpxtrfsp_args_s ),
272 #
if defined(PASTIX_STARPU_PROFILING)
273 STARPU_CALLBACK_WITH_ARG_NFREE, blok_cpxtrfsp_callback, cl_arg,
276 #
if defined(PASTIX_DEBUG_STARPU)
277 STARPU_NAME, task_name,
279 #
if defined(PASTIX_STARPU_HETEROPRIO)
280 STARPU_PRIORITY, BucketFacto2D,
282 STARPU_PRIORITY, prio,
int cpucblk_cpxtrfsp1d_pxtrf(SolverMatrix *solvmtx, SolverCblk *cblk, void *dataL)
Compute the LL^t factorization of the diagonal block in a panel.
BEGIN_C_DECLS typedef int pastix_int_t
void starpu_task_blok_cpxtrf(sopalin_data_t *sopalin_data, SolverCblk *cblk, int prio)
TODO.
static void fct_blok_cpxtrfsp_cpu(void *descr[], void *cl_arg)
StarPU CPU implementation.
Base structure to all codelet arguments that include the profiling data.
static double cost(symbol_cblk_t *cblk)
Computes the cost of a cblk.
static pastix_int_t cblk_colnbr(const SolverCblk *cblk)
Compute the number of columns in a column block.
Solver column block structure.