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
b63439e7
Commit
b63439e7
authored
1 year ago
by
Matthieu Kuhn
Committed by
Mathieu Faverge
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
header: Add a CHAM_ipiv_t data structure to manage the pivoting data structure in GETRF
parent
745c142b
No related branches found
No related tags found
1 merge request
!378
LU factorization with partial pivoting per column (warning: panel only)
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/chameleon/struct.h
+20
-1
20 additions, 1 deletion
include/chameleon/struct.h
with
20 additions
and
1 deletion
include/chameleon/struct.h
+
20
−
1
View file @
b63439e7
...
...
@@ -19,7 +19,7 @@
* @author Samuel Thibault
* @author Matthieu Kuhn
* @author Lionel Eyraud-Dubois
* @date 2023-0
7-05
* @date 2023-0
8-22
*
*/
#ifndef _chameleon_struct_h_
...
...
@@ -137,6 +137,25 @@ struct chameleon_desc_s {
void
*
schedopt
;
// scheduler (QUARK|StarPU) specific structure
};
/**
* CHAMELEON structure to hold pivot informations for the LU factorization with partial pivoting
*/
typedef
struct
chameleon_piv_s
{
const
CHAM_desc_t
*
desc
;
/**> Reference descriptor to compute data mapping based on diagonal tiles,
and get floating reference type */
int
*
data
;
/**> Pointer to the data */
void
*
ipiv
;
/**> Opaque array of pointers for the runtimes to handle the ipiv array */
void
*
nextpiv
;
/**> Opaque array of pointers for the runtimes to handle the pivot computation structure */
void
*
prevpiv
;
/**> Opaque array of pointers for the runtimes to handle the pivot computation structure */
int64_t
mpitag_ipiv
;
/**> Initial mpi tag values for the ipiv handles */
int64_t
mpitag_nextpiv
;
/**> Initial mpi tag values for the nextpiv handles */
int64_t
mpitag_prevpiv
;
/**> Initial mpi tag values for the prevpiv handles */
int
i
;
/**> row index to the beginning of the submatrix */
int
m
;
/**> The number of row in the vector ipiv */
int
mb
;
/**> The number of row per block */
int
mt
;
/**> The number of tiles */
int
n
;
/**> The number of column considered (must be updated for each panel) */
}
CHAM_ipiv_t
;
/**
* CHAMELEON request uniquely identifies each asynchronous function call.
...
...
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