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
2b7cc510
Commit
2b7cc510
authored
7 years ago
by
BOUCHERIE Raphael
Browse files
Options
Downloads
Patches
Plain Diff
added the auxiliary for hqr and systolic
parent
6bb968b7
No related branches found
No related tags found
1 merge request
!47
Integration of hierarchicah householder reduction trees
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
testing/testing_zauxiliary.c
+8
-2
8 additions, 2 deletions
testing/testing_zauxiliary.c
testing/testing_zauxiliary.h
+2
-0
2 additions, 0 deletions
testing/testing_zauxiliary.h
with
10 additions
and
2 deletions
testing/testing_zauxiliary.c
+
8
−
2
View file @
2b7cc510
...
@@ -185,8 +185,8 @@ int main (int argc, char **argv)
...
@@ -185,8 +185,8 @@ int main (int argc, char **argv)
else*/
else*/
MORSE_Init
(
ncores
,
ngpus
);
MORSE_Init
(
ncores
,
ngpus
);
MORSE_Disable
(
MORSE_AUTOTUNING
);
MORSE_Disable
(
MORSE_AUTOTUNING
);
MORSE_Set
(
MORSE_TILE_SIZE
,
3
20
);
MORSE_Set
(
MORSE_TILE_SIZE
,
20
);
MORSE_Set
(
MORSE_INNER_BLOCK_SIZE
,
48
);
MORSE_Set
(
MORSE_INNER_BLOCK_SIZE
,
7
);
argc
-=
4
;
argc
-=
4
;
argv
+=
4
;
argv
+=
4
;
...
@@ -251,6 +251,12 @@ int main (int argc, char **argv)
...
@@ -251,6 +251,12 @@ int main (int argc, char **argv)
else
if
(
strcmp
(
func
,
"GELS_PARAM"
)
==
0
)
{
else
if
(
strcmp
(
func
,
"GELS_PARAM"
)
==
0
)
{
info
+=
testing_zgels_param
(
argc
,
argv
);
info
+=
testing_zgels_param
(
argc
,
argv
);
}
}
else
if
(
strcmp
(
func
,
"GELS_HQR"
)
==
0
)
{
info
+=
testing_zgels_hqr
(
argc
,
argv
);
}
else
if
(
strcmp
(
func
,
"GELS_SYSTOLIC"
)
==
0
)
{
info
+=
testing_zgels_systolic
(
argc
,
argv
);
}
/* else if ( strcmp(func, "GESV") == 0 ) { */
/* else if ( strcmp(func, "GESV") == 0 ) { */
/* info += testing_zgesv( argc, argv ); */
/* info += testing_zgesv( argc, argv ); */
/* } */
/* } */
...
...
This diff is collapsed.
Click to expand it.
testing/testing_zauxiliary.h
+
2
−
0
View file @
2b7cc510
...
@@ -93,6 +93,8 @@ int testing_zgeadd(int argc, char **argv);
...
@@ -93,6 +93,8 @@ int testing_zgeadd(int argc, char **argv);
int
testing_zposv
(
int
argc
,
char
**
argv
);
int
testing_zposv
(
int
argc
,
char
**
argv
);
int
testing_zgels
(
int
argc
,
char
**
argv
);
int
testing_zgels
(
int
argc
,
char
**
argv
);
int
testing_zgels_param
(
int
argc
,
char
**
argv
);
int
testing_zgels_param
(
int
argc
,
char
**
argv
);
int
testing_zgels_hqr
(
int
argc
,
char
**
argv
);
int
testing_zgels_systolic
(
int
argc
,
char
**
argv
);
int
testing_zgesv
(
int
argc
,
char
**
argv
);
int
testing_zgesv
(
int
argc
,
char
**
argv
);
int
testing_zgesv_incpiv
(
int
argc
,
char
**
argv
);
int
testing_zgesv_incpiv
(
int
argc
,
char
**
argv
);
...
...
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