Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Chameleon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
Chameleon
Commits
fbd087b7
Commit
fbd087b7
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Disable GPU on LQ case as it is not implemented yet
parent
0ef1dcea
No related branches found
No related tags found
1 merge request
!81
Migration QR/LQ
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
coreblas/compute/core_ztpmlqt.c
+2
-2
2 additions, 2 deletions
coreblas/compute/core_ztpmlqt.c
runtime/starpu/codelets/codelet_ztpmlqt.c
+3
-2
3 additions, 2 deletions
runtime/starpu/codelets/codelet_ztpmlqt.c
with
5 additions
and
4 deletions
coreblas/compute/core_ztpmlqt.c
+
2
−
2
View file @
fbd087b7
...
@@ -112,8 +112,8 @@
...
@@ -112,8 +112,8 @@
* V = [V1] [V2].
* V = [V1] [V2].
*
*
* The size of the trapezoidal block V2 is determined by the parameter L,
* The size of the trapezoidal block V2 is determined by the parameter L,
* where 0 <= L <= K; V2 is
upp
er trapezoidal, consisting of the first L
* where 0 <= L <= K; V2 is
low
er trapezoidal, consisting of the first L
* rows of a K-by-K upper triangular matrix. If L=K, V2 is
upp
er triangular;
* rows of a K-by-K upper triangular matrix. If L=K, V2 is
low
er triangular;
* if L=0, there is no trapezoidal block, hence V = V1 is rectangular.
* if L=0, there is no trapezoidal block, hence V = V1 is rectangular.
*
*
* If side = MorseLeft: C = [A] where A is K-by-N, B is M-by-N and V is K-by-M.
* If side = MorseLeft: C = [A] where A is K-by-N, B is M-by-N and V is K-by-M.
...
...
This diff is collapsed.
Click to expand it.
runtime/starpu/codelets/codelet_ztpmlqt.c
+
3
−
2
View file @
fbd087b7
...
@@ -54,7 +54,7 @@ static void cl_ztpmlqt_cpu_func(void *descr[], void *cl_arg)
...
@@ -54,7 +54,7 @@ static void cl_ztpmlqt_cpu_func(void *descr[], void *cl_arg)
V
,
ldv
,
T
,
ldt
,
A
,
lda
,
B
,
ldb
,
WORK
);
V
,
ldv
,
T
,
ldt
,
A
,
lda
,
B
,
ldb
,
WORK
);
}
}
#if defined(CHAMELEON_USE_CUDA)
#if defined(CHAMELEON_USE_CUDA)
&& 0
static
void
cl_ztpmlqt_cuda_func
(
void
*
descr
[],
void
*
cl_arg
)
static
void
cl_ztpmlqt_cuda_func
(
void
*
descr
[],
void
*
cl_arg
)
{
{
MORSE_enum
side
;
MORSE_enum
side
;
...
@@ -100,7 +100,8 @@ static void cl_ztpmlqt_cuda_func(void *descr[], void *cl_arg)
...
@@ -100,7 +100,8 @@ static void cl_ztpmlqt_cuda_func(void *descr[], void *cl_arg)
/*
/*
* Codelet definition
* Codelet definition
*/
*/
CODELETS
(
ztpmlqt
,
5
,
cl_ztpmlqt_cpu_func
,
cl_ztpmlqt_cuda_func
,
STARPU_CUDA_ASYNC
)
CODELETS_CPU
(
ztpmlqt
,
5
,
cl_ztpmlqt_cpu_func
)
//CODELETS(ztpmlqt, 5, cl_ztpmlqt_cpu_func, cl_ztpmlqt_cuda_func, STARPU_CUDA_ASYNC)
void
void
MORSE_TASK_ztpmlqt
(
const
MORSE_option_t
*
options
,
MORSE_TASK_ztpmlqt
(
const
MORSE_option_t
*
options
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment