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
ee734dd3
Commit
ee734dd3
authored
7 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Use pointer arithmetic as in cudablas version
parent
f477bf60
No related branches found
No related tags found
1 merge request
!20
Fix for the TPMQRT routine
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
coreblas/compute/core_zttmqr.c
+5
-6
5 additions, 6 deletions
coreblas/compute/core_zttmqr.c
with
5 additions
and
6 deletions
coreblas/compute/core_zttmqr.c
+
5
−
6
View file @
ee734dd3
...
@@ -3,9 +3,8 @@
...
@@ -3,9 +3,8 @@
* @copyright (c) 2009-2014 The University of Tennessee and The University
* @copyright (c) 2009-2014 The University of Tennessee and The University
* of Tennessee Research Foundation.
* of Tennessee Research Foundation.
* All rights reserved.
* All rights reserved.
* @copyright (c) 2012-2014 Inria. All rights reserved.
* @copyright (c) 2012-2017 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria,
* @copyright (c) 2012-2014 Bordeaux INP, CNRS (LaBRI UMR 5800), Inria, Univ. Bordeaux. All rights reserved.
* Univ. Bordeaux. All rights reserved.
*
**/
**/
/**
/**
...
@@ -247,10 +246,10 @@ int CORE_zttmqr(MORSE_enum side, MORSE_enum trans,
...
@@ -247,10 +246,10 @@ int CORE_zttmqr(MORSE_enum side, MORSE_enum trans,
CORE_zparfb
(
CORE_zparfb
(
side
,
trans
,
MorseForward
,
MorseColumnwise
,
side
,
trans
,
MorseForward
,
MorseColumnwise
,
mi1
,
ni1
,
mi2
,
ni2
,
kb
,
l
,
mi1
,
ni1
,
mi2
,
ni2
,
kb
,
l
,
&
A1
[
LDA1
*
jc
+
ic
]
,
LDA1
,
A1
+
LDA1
*
jc
+
ic
,
LDA1
,
A2
,
LDA2
,
A2
,
LDA2
,
&
V
[
LDV
*
i
]
,
LDV
,
V
+
LDV
*
i
,
LDV
,
&
T
[
LDT
*
i
]
,
LDT
,
T
+
LDT
*
i
,
LDT
,
WORK
,
LDWORK
);
WORK
,
LDWORK
);
}
}
return
MORSE_SUCCESS
;
return
MORSE_SUCCESS
;
...
...
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