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
6b940f25
Commit
6b940f25
authored
1 year ago
by
Mathieu Faverge
Browse files
Options
Downloads
Patches
Plain Diff
print: Fix minor compilation warnings
parent
50119f14
No related branches found
No related tags found
1 merge request
!398
Generic data distribution specification
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
compute/zprint.c
+3
-3
3 additions, 3 deletions
compute/zprint.c
coreblas/compute/core_zprint.c
+3
-3
3 additions, 3 deletions
coreblas/compute/core_zprint.c
with
6 additions
and
6 deletions
compute/zprint.c
+
3
−
3
View file @
6b940f25
...
...
@@ -9,10 +9,10 @@
*
* @brief Chameleon zprint wrappers
*
* @version 1.
2
.0
* @version 1.
3
.0
* @author Mathieu Faverge
* @author Matthieu Kuhn
* @date 202
2
-0
2-22
* @date 202
3
-0
7-05
* @precisions normal z -> s d c
*
*/
...
...
@@ -42,7 +42,7 @@ zprint( const CHAM_desc_t *descA,
int
tempmm
=
m
==
descA
->
mt
-
1
?
descA
->
m
-
m
*
descA
->
mb
:
descA
->
mb
;
int
tempnn
=
n
==
descA
->
nt
-
1
?
descA
->
n
-
n
*
descA
->
nb
:
descA
->
nb
;
int
lda
,
i
;
int
lda
;
if
(
zprint_runtime_id
==
RUNTIME_SCHED_PARSEC
)
{
A
=
(
CHAMELEON_Complex64_t
*
)
tileA
;
...
...
This diff is collapsed.
Click to expand it.
coreblas/compute/core_zprint.c
+
3
−
3
View file @
6b940f25
...
...
@@ -9,10 +9,10 @@
*
* @brief Chameleon core_zprint CPU kernel
*
* @version 1.
2
.0
* @version 1.
3
.0
* @author Mathieu Faverge
* @author Florent Pruvost
* @date 202
0
-0
3
-0
3
* @date 202
3
-0
7
-0
5
* @precisions normal z -> c d s
*
*/
...
...
@@ -28,7 +28,7 @@ CORE_zprint( FILE *file, const char *header,
int
i
,
j
;
fflush
(
output
);
fprintf
(
output
,
"--- %10s (%2d, %2d) / %p, %d:
\n
"
,
header
,
Am
,
An
,
A
,
lda
);
fprintf
(
output
,
"--- %10s (%2d, %2d) / %p, %d:
\n
"
,
header
,
Am
,
An
,
(
void
*
)
A
,
lda
);
for
(
i
=
0
;
i
<
M
;
i
++
)
{
fprintf
(
output
,
" "
);
for
(
j
=
0
;
j
<
N
;
j
++
)
{
...
...
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