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
5e3668f0
Commit
5e3668f0
authored
5 months ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
compute:gemm: fix summa gemm when A or B are transposed
parent
f175b885
No related branches found
No related tags found
1 merge request
!483
Enable insert_task_zlacpy_on_remote_node
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compute/pzgemm.c
+6
-6
6 additions, 6 deletions
compute/pzgemm.c
with
6 additions
and
6 deletions
compute/pzgemm.c
+
6
−
6
View file @
5e3668f0
...
...
@@ -233,7 +233,7 @@ chameleon_pzgemm_summa( CHAM_context_t *chamctxt, cham_trans_t transA, cham_tran
options
,
ChamUpperLower
,
tempkk
,
tempmm
,
A
(
k
,
m
),
WA
(
m
,
(
k
%
C
->
q
)
+
lq
)
);
WA
(
m
,
(
m
%
C
->
q
)
+
lq
)
);
RUNTIME_data_flush
(
sequence
,
A
(
k
,
m
)
);
...
...
@@ -241,8 +241,8 @@ chameleon_pzgemm_summa( CHAM_context_t *chamctxt, cham_trans_t transA, cham_tran
INSERT_TASK_zlacpy
(
options
,
ChamUpperLower
,
tempkk
,
tempmm
,
WA
(
m
,
((
k
+
q
-
1
)
%
C
->
q
)
+
lq
),
WA
(
m
,
((
k
+
q
)
%
C
->
q
)
+
lq
)
);
WA
(
m
,
((
m
+
q
-
1
)
%
C
->
q
)
+
lq
),
WA
(
m
,
((
m
+
q
)
%
C
->
q
)
+
lq
)
);
}
}
}
...
...
@@ -273,7 +273,7 @@ chameleon_pzgemm_summa( CHAM_context_t *chamctxt, cham_trans_t transA, cham_tran
options
,
ChamUpperLower
,
tempnn
,
tempkk
,
B
(
n
,
k
),
WB
(
(
k
%
C
->
p
)
+
lp
,
n
)
);
WB
(
(
n
%
C
->
p
)
+
lp
,
n
)
);
RUNTIME_data_flush
(
sequence
,
B
(
n
,
k
)
);
...
...
@@ -281,8 +281,8 @@ chameleon_pzgemm_summa( CHAM_context_t *chamctxt, cham_trans_t transA, cham_tran
INSERT_TASK_zlacpy
(
options
,
ChamUpperLower
,
tempnn
,
tempkk
,
WB
(
((
k
+
p
-
1
)
%
C
->
p
)
+
lp
,
n
),
WB
(
((
k
+
p
)
%
C
->
p
)
+
lp
,
n
)
);
WB
(
((
n
+
p
-
1
)
%
C
->
p
)
+
lp
,
n
),
WB
(
((
n
+
p
)
%
C
->
p
)
+
lp
,
n
)
);
}
}
}
...
...
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