-
Notifications
You must be signed in to change notification settings - Fork 11
/
transpose_ligra.h
103 lines (91 loc) · 3.62 KB
/
transpose_ligra.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// This code is part of the Problem Based Benchmark Suite (PBBS)
// Copyright (c) 2010 Guy Blelloch and the PBBS team
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights (to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef A_TRANSPOSE_INCLUDED
#define A_TRANSPOSE_INCLUDED
#include "parallel_ligra.h"
#define _TRANS_THRESHHOLD 64
template <class E, class intT>
struct transpose {
E *A, *B;
transpose(E *AA, E *BB) : A(AA), B(BB) {}
void transR(intT rStart, intT rCount, intT rLength,
intT cStart, intT cCount, intT cLength) {
//cout << "cc,rc: " << cCount << "," << rCount << endl;
if (cCount < _TRANS_THRESHHOLD && rCount < _TRANS_THRESHHOLD) {
for (intT i=rStart; i < rStart + rCount; i++)
for (intT j=cStart; j < cStart + cCount; j++)
B[j*cLength + i] = A[i*rLength + j];
} else if (cCount > rCount) {
intT l1 = cCount/2;
intT l2 = cCount - cCount/2;
cilk_spawn this->transR(rStart,rCount,rLength,cStart,l1,cLength);
transR(rStart,rCount,rLength,cStart + l1,l2,cLength);
cilk_sync;
} else {
intT l1 = rCount/2;
intT l2 = rCount - rCount/2;
cilk_spawn this->transR(rStart,l1,rLength,cStart,cCount,cLength);
transR(rStart + l1,l2,rLength,cStart,cCount,cLength);
cilk_sync;
}
}
void trans(intT rCount, intT cCount) {
transR(0,rCount,cCount,0,cCount,rCount);
}
};
template <class E, class intT>
struct blockTrans {
E *A, *B;
intT *OA, *OB, *L;
blockTrans(E *AA, E *BB, intT *OOA, intT *OOB, intT *LL)
: A(AA), B(BB), OA(OOA), OB(OOB), L(LL) {}
void transR(intT rStart, intT rCount, intT rLength,
intT cStart, intT cCount, intT cLength) {
//cout << "cc,rc: " << cCount << "," << rCount << endl;
if (cCount < _TRANS_THRESHHOLD && rCount < _TRANS_THRESHHOLD) {
for (intT i=rStart; i < rStart + rCount; i++)
for (intT j=cStart; j < cStart + cCount; j++) {
E* pa = A+OA[i*rLength + j];
E* pb = B+OB[j*cLength + i];
intT l = L[i*rLength + j];
//cout << "pa,pb,l: " << pa << "," << pb << "," << l << endl;
for (intT k=0; k < l; k++) *(pb++) = *(pa++);
}
} else if (cCount > rCount) {
intT l1 = cCount/2;
intT l2 = cCount - cCount/2;
cilk_spawn this->transR(rStart,rCount,rLength,cStart,l1,cLength);
transR(rStart,rCount,rLength,cStart + l1,l2,cLength);
cilk_sync;
} else {
intT l1 = rCount/2;
intT l2 = rCount - rCount/2;
cilk_spawn this->transR(rStart,l1,rLength,cStart,cCount,cLength);
transR(rStart + l1,l2,rLength,cStart,cCount,cLength);
cilk_sync;
}
}
void trans(intT rCount, intT cCount) {
transR(0,rCount,cCount,0,cCount,rCount);
}
} ;
#endif // A_TRANSPOSE_INCLUDED