parent
00fc003588
commit
e2cd0cb7aa
@ -0,0 +1,98 @@
|
|||||||
|
package edu.thi.phga.aparapi_test;
|
||||||
|
|
||||||
|
import com.aparapi.Kernel;
|
||||||
|
import com.aparapi.Range;
|
||||||
|
|
||||||
|
class MatrixGauss {
|
||||||
|
public static void start() {
|
||||||
|
double[] a = {
|
||||||
|
2, 8, 1,
|
||||||
|
4, 4, -1,
|
||||||
|
-1, 2, 12
|
||||||
|
};
|
||||||
|
print(a);
|
||||||
|
// gauss_muloe(a);
|
||||||
|
gauss(a);
|
||||||
|
print(a);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void print(double[] a) {
|
||||||
|
int n = (int) Math.round(Math.sqrt(a.length));
|
||||||
|
for (int z = 0; z < n; z++) {
|
||||||
|
for (int s = 0; s < n; s++)
|
||||||
|
System.out.printf("%5.1f ", a[z * n + s]);
|
||||||
|
System.out.println();
|
||||||
|
}
|
||||||
|
System.out.println();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void gauss(double[] a) {
|
||||||
|
int n = (int) Math.sqrt(a.length);
|
||||||
|
double[] c = new double[n];
|
||||||
|
Range r = Range.create(n * n);
|
||||||
|
|
||||||
|
class SubKernel extends Kernel {
|
||||||
|
int i;
|
||||||
|
double[] c;
|
||||||
|
public void setParams(int i, double[] c) {
|
||||||
|
this.i = i;
|
||||||
|
this.c = c;
|
||||||
|
}
|
||||||
|
@Override public void run() {
|
||||||
|
int j = getGlobalId();
|
||||||
|
int x = (int) j / n;
|
||||||
|
// if (j % n != i)
|
||||||
|
a[j] = a[j] - c[x] * a[i * n + (j % n)];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
SubKernel k = new SubKernel();
|
||||||
|
|
||||||
|
for (int i = 0; i < n; i++) {
|
||||||
|
for (int j = 0; j < n; j++) {
|
||||||
|
c[j] = a[j * n + i] / a[i * n + i];
|
||||||
|
}
|
||||||
|
c[i] = 0; // removes the if (j % n != i)
|
||||||
|
k.setParams(i, c);
|
||||||
|
k.execute(r);
|
||||||
|
// for (int j = 0; j < n * n; j++) {
|
||||||
|
// int x = (int) j / n;
|
||||||
|
// int Ai = i * n + (j % n);
|
||||||
|
// System.out.printf("j: %d, i: %d, j / n: %d -> ", j, i, x);
|
||||||
|
// System.out.printf("a[%d] -= c[%d] * a[%d] (%.2f * %.2f)", j, x, Ai, c[x], a[Ai]);
|
||||||
|
// System.out.println("");
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// private static void gauss_muloe(double[] a) {
|
||||||
|
// int n = (int) Math.round(Math.sqrt(a.length));
|
||||||
|
// double[] c = new double[n];
|
||||||
|
// // Koeffizienten
|
||||||
|
// class Zeilensubtraktion extends Kernel {
|
||||||
|
// double[] c;
|
||||||
|
// int i;
|
||||||
|
// void setC(double[] c) { this.c = c; }
|
||||||
|
// void setI(int
|
||||||
|
// i) { this.i = i; }
|
||||||
|
// @Override public void run() {
|
||||||
|
// int j = getGlobalId(0);
|
||||||
|
// // Zeilenindex
|
||||||
|
// int k = getGlobalId(1);
|
||||||
|
// // Spaltenindex
|
||||||
|
// a[j * n + k] -= c[j] * a[i * n + k];
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// Zeilensubtraktion kernel = new Zeilensubtraktion();
|
||||||
|
// Range range = Range.create2D(App.device, n, n);
|
||||||
|
// for (int i = 0; i < n; i++) {
|
||||||
|
// for (int j = 0; j < n; j++)
|
||||||
|
// c[j] = a[j * n + i] / a[i * n + i];
|
||||||
|
|
||||||
|
// c[i] = 0; // vermeidet Fallunterscheidung im Kernel
|
||||||
|
// kernel.setI(i); kernel.setC(c);
|
||||||
|
// kernel.execute(range);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue