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
4e062e8e
Commit
4e062e8e
authored
6 years ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
Fix indet
parent
1768bd25
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compute/zlaset.c
+12
-12
12 additions, 12 deletions
compute/zlaset.c
with
12 additions
and
12 deletions
compute/zlaset.c
+
12
−
12
View file @
4e062e8e
...
...
@@ -69,10 +69,10 @@
* @sa CHAMELEON_dlaset
* @sa CHAMELEON_slaset
*
*/
*****************************************************************************
*/
int
CHAMELEON_zlaset
(
cham_uplo_t
uplo
,
int
M
,
int
N
,
CHAMELEON_Complex64_t
alpha
,
CHAMELEON_Complex64_t
beta
,
CHAMELEON_Complex64_t
*
A
,
int
LDA
)
CHAMELEON_Complex64_t
alpha
,
CHAMELEON_Complex64_t
beta
,
CHAMELEON_Complex64_t
*
A
,
int
LDA
)
{
int
NB
;
int
status
;
...
...
@@ -124,14 +124,14 @@ int CHAMELEON_zlaset( cham_uplo_t uplo, int M, int N,
/* Submit the matrix conversion */
chameleon_zlap2tile
(
chamctxt
,
&
descAl
,
&
descAt
,
ChamDescInout
,
uplo
,
A
,
NB
,
NB
,
LDA
,
N
,
M
,
N
,
sequence
,
&
request
);
A
,
NB
,
NB
,
LDA
,
N
,
M
,
N
,
sequence
,
&
request
);
/* Call the tile interface */
CHAMELEON_zlaset_Tile_Async
(
uplo
,
alpha
,
beta
,
&
descAt
,
sequence
,
&
request
);
/* Submit the matrix conversion back */
chameleon_ztile2lap
(
chamctxt
,
&
descAl
,
&
descAt
,
ChamDescInout
,
uplo
,
sequence
,
&
request
);
ChamDescInout
,
uplo
,
sequence
,
&
request
);
chameleon_sequence_wait
(
chamctxt
,
sequence
);
...
...
@@ -177,10 +177,10 @@ int CHAMELEON_zlaset( cham_uplo_t uplo, int M, int N,
* @sa CHAMELEON_dlaset_Tile
* @sa CHAMELEON_slaset_Tile
*
*/
*****************************************************************************
*/
int
CHAMELEON_zlaset_Tile
(
cham_uplo_t
uplo
,
CHAMELEON_Complex64_t
alpha
,
CHAMELEON_Complex64_t
beta
,
CHAM_desc_t
*
A
)
CHAMELEON_Complex64_t
alpha
,
CHAMELEON_Complex64_t
beta
,
CHAM_desc_t
*
A
)
{
CHAM_context_t
*
chamctxt
;
RUNTIME_sequence_t
*
sequence
=
NULL
;
...
...
@@ -230,11 +230,11 @@ int CHAMELEON_zlaset_Tile( cham_uplo_t uplo,
* @sa CHAMELEON_dlaset_Tile_Async
* @sa CHAMELEON_slaset_Tile_Async
*
*/
*****************************************************************************
*/
int
CHAMELEON_zlaset_Tile_Async
(
cham_uplo_t
uplo
,
CHAMELEON_Complex64_t
alpha
,
CHAMELEON_Complex64_t
beta
,
CHAM_desc_t
*
A
,
RUNTIME_sequence_t
*
sequence
,
RUNTIME_request_t
*
request
)
CHAMELEON_Complex64_t
alpha
,
CHAMELEON_Complex64_t
beta
,
CHAM_desc_t
*
A
,
RUNTIME_sequence_t
*
sequence
,
RUNTIME_request_t
*
request
)
{
CHAM_context_t
*
chamctxt
;
...
...
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