Actual source code: transm.c
petsc-3.11.4 2019-09-28
2: #include <petsc/private/matimpl.h>
4: typedef struct {
5: Mat A;
6: } Mat_Transpose;
8: PetscErrorCode MatMult_Transpose(Mat N,Vec x,Vec y)
9: {
10: Mat_Transpose *Na = (Mat_Transpose*)N->data;
14: MatMultTranspose(Na->A,x,y);
15: return(0);
16: }
18: PetscErrorCode MatMultAdd_Transpose(Mat N,Vec v1,Vec v2,Vec v3)
19: {
20: Mat_Transpose *Na = (Mat_Transpose*)N->data;
24: MatMultTransposeAdd(Na->A,v1,v2,v3);
25: return(0);
26: }
28: PetscErrorCode MatMultTranspose_Transpose(Mat N,Vec x,Vec y)
29: {
30: Mat_Transpose *Na = (Mat_Transpose*)N->data;
34: MatMult(Na->A,x,y);
35: return(0);
36: }
38: PetscErrorCode MatMultTransposeAdd_Transpose(Mat N,Vec v1,Vec v2,Vec v3)
39: {
40: Mat_Transpose *Na = (Mat_Transpose*)N->data;
44: MatMultAdd(Na->A,v1,v2,v3);
45: return(0);
46: }
48: PetscErrorCode MatDestroy_Transpose(Mat N)
49: {
50: Mat_Transpose *Na = (Mat_Transpose*)N->data;
54: MatDestroy(&Na->A);
55: PetscObjectComposeFunction((PetscObject)N,"MatTransposeGetMat_C",NULL);
56: PetscFree(N->data);
57: return(0);
58: }
60: PetscErrorCode MatDuplicate_Transpose(Mat N, MatDuplicateOption op, Mat* m)
61: {
62: Mat_Transpose *Na = (Mat_Transpose*)N->data;
66: if (op == MAT_COPY_VALUES) {
67: MatTranspose(Na->A,MAT_INITIAL_MATRIX,m);
68: } else if (op == MAT_DO_NOT_COPY_VALUES) {
69: MatDuplicate(Na->A,MAT_DO_NOT_COPY_VALUES,m);
70: MatTranspose(*m,MAT_INPLACE_MATRIX,m);
71: } else SETERRQ(PetscObjectComm((PetscObject)N),PETSC_ERR_SUP,"MAT_SHARE_NONZERO_PATTERN not supported for this matrix type");
72: return(0);
73: }
75: PetscErrorCode MatCreateVecs_Transpose(Mat A,Vec *r, Vec *l)
76: {
77: Mat_Transpose *Aa = (Mat_Transpose*)A->data;
81: MatCreateVecs(Aa->A,l,r);
82: return(0);
83: }
85: PetscErrorCode MatTransposeGetMat_Transpose(Mat A,Mat *M)
86: {
87: Mat_Transpose *Aa = (Mat_Transpose*)A->data;
90: *M = Aa->A;
91: return(0);
92: }
94: /*@
95: MatTransposeGetMat - Gets the Mat object stored inside a MATTRANSPOSEMAT
97: Logically collective on Mat
99: Input Parameter:
100: . A - the MATTRANSPOSE matrix
102: Output Parameter:
103: . M - the matrix object stored inside A
105: Level: intermediate
107: .seealso: MatCreateTranspose()
109: @*/
110: PetscErrorCode MatTransposeGetMat(Mat A,Mat *M)
111: {
118: PetscUseMethod(A,"MatTransposeGetMat_C",(Mat,Mat*),(A,M));
119: return(0);
120: }
122: /*@
123: MatCreateTranspose - Creates a new matrix object that behaves like A'
125: Collective on Mat
127: Input Parameter:
128: . A - the (possibly rectangular) matrix
130: Output Parameter:
131: . N - the matrix that represents A'
133: Level: intermediate
135: Notes:
136: The transpose A' is NOT actually formed! Rather the new matrix
137: object performs the matrix-vector product by using the MatMultTranspose() on
138: the original matrix
140: .seealso: MatCreateNormal(), MatMult(), MatMultTranspose(), MatCreate()
142: @*/
143: PetscErrorCode MatCreateTranspose(Mat A,Mat *N)
144: {
146: PetscInt m,n;
147: Mat_Transpose *Na;
150: MatGetLocalSize(A,&m,&n);
151: MatCreate(PetscObjectComm((PetscObject)A),N);
152: MatSetSizes(*N,n,m,PETSC_DECIDE,PETSC_DECIDE);
153: PetscLayoutSetUp((*N)->rmap);
154: PetscLayoutSetUp((*N)->cmap);
155: PetscObjectChangeTypeName((PetscObject)*N,MATTRANSPOSEMAT);
157: PetscNewLog(*N,&Na);
158: (*N)->data = (void*) Na;
159: PetscObjectReference((PetscObject)A);
160: Na->A = A;
162: (*N)->ops->destroy = MatDestroy_Transpose;
163: (*N)->ops->mult = MatMult_Transpose;
164: (*N)->ops->multadd = MatMultAdd_Transpose;
165: (*N)->ops->multtranspose = MatMultTranspose_Transpose;
166: (*N)->ops->multtransposeadd = MatMultTransposeAdd_Transpose;
167: (*N)->ops->duplicate = MatDuplicate_Transpose;
168: (*N)->ops->getvecs = MatCreateVecs_Transpose;
169: (*N)->assembled = PETSC_TRUE;
171: PetscObjectComposeFunction((PetscObject)(*N),"MatTransposeGetMat_C",MatTransposeGetMat_Transpose);
172: MatSetBlockSizes(*N,PetscAbs(A->cmap->bs),PetscAbs(A->rmap->bs));
173: MatSetUp(*N);
174: return(0);
175: }