Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
PaStiX
Commits
7c42a0b1
Commit
7c42a0b1
authored
Aug 07, 2017
by
Mathieu Faverge
Browse files
Add comments about the workspaces
parent
7b1a591b
Changes
2
Hide whitespace changes
Inline
Side-by-side
sopalin/sequential_zhetrf.c
View file @
7c42a0b1
...
...
@@ -54,6 +54,12 @@ sequential_zhetrf( pastix_data_t *pastix_data,
/* Compute */
cpucblk_zhetrfsp1d
(
datacode
,
cblk
,
threshold
,
/*
* Workspace size has been computed without the
* diagonal block, thus in order to work with generic
* TRSM and GEMM kernels, we must shift the DLh workspace
* by the diagonal block size
*/
work1
-
(
N
*
N
),
work2
);
}
...
...
@@ -99,6 +105,12 @@ thread_pzhetrf( isched_thread_t *ctx, void *args )
/* Compute */
cpucblk_zhetrfsp1d
(
datacode
,
cblk
,
sopalin_data
->
diagthreshold
,
/*
* Workspace size has been computed without the
* diagonal block, thus in order to work with generic
* TRSM and GEMM kernels, we must shift the DLh workspace
* by the diagonal block size
*/
work1
-
(
N
*
N
),
work2
);
}
...
...
sopalin/sequential_zsytrf.c
View file @
7c42a0b1
...
...
@@ -54,6 +54,12 @@ sequential_zsytrf( pastix_data_t *pastix_data,
/* Compute */
cpucblk_zsytrfsp1d
(
datacode
,
cblk
,
threshold
,
/*
* Workspace size has been computed without the
* diagonal block, thus in order to work with generic
* TRSM and GEMM kernels, we must shift the DLh workspace
* by the diagonal block size
*/
work1
-
(
N
*
N
),
work2
);
}
...
...
@@ -99,6 +105,12 @@ thread_pzsytrf( isched_thread_t *ctx, void *args )
/* Compute */
cpucblk_zsytrfsp1d
(
datacode
,
cblk
,
sopalin_data
->
diagthreshold
,
/*
* Workspace size has been computed without the
* diagonal block, thus in order to work with generic
* TRSM and GEMM kernels, we must shift the DLh workspace
* by the diagonal block size
*/
work1
-
(
N
*
N
),
work2
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment