Click here to Skip to main content
15,867,568 members
Articles / Programming Languages / XML

A Parallel Class Study: Bi-Conjugate Gradient Stabilized

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
3 Dec 2018CPOL6 min read 18.8K   160   4   4
A study of .NET Parallel Class in solving a system of linear equations using bi-conjugate gradient stabilized method

Abstract

In this article, .NET parallel class is utilized to boost the performance of bi-conjugate gradient stabilized algorithm which is an iterative method of solving system of linear equations. A Matrix class with appropriate operators, methods and properties is developed. A solver class capable of performing the algorithm on separate thread is developed and, a set of matrices of size 1000, 1500, 2000, 2500, 3000, 4000 and 6000 is tested and discussed. In this study, implementing Parallel Class could reduce the CPU time by an average of 41% and maximum of 65%.

Introduction

.NET Framework Parallel Class provides developers with a simple structured loop that executes a block in parallel on several cores. This class was first introduced with .NET Framework 4.0 and since then, it’s been practiced in several studies. In this article, Parallel Class is implemented inside a globally experienced algorithm of solving a system of linear equations known as bi-conjugate gradient stabilized. This job is performed through splitting the independent computations and performing them on iterations of the parallel loop. As for any equation of this type, the input data includes matrices of A, X and b. Matrices of X and b are in size n while matrix of A is of size n^2 . Thus, matrix of A requires heavy computations and it can be considered as a target of parallel computation wherever it appears inside the algorithm.

Bi-Conjugate Gradient Stabilized

Bi-Conjugate Gradient Stabilized or briefly BiConGradStab is an advanced iterative method of solving system of linear equations. This method and other methods of this family such as Conjugate Gradient are perfect for memory management due to implementing vectors of size n in their calculations rather than matrices of size n^2. In addition, this method is not restricted to a specific type or size of matrix and can be applied to any sparse matrices of A. The following illustrates the algorithm of BiConGradStab method.

  1. r0 = bAx0
  2. Choose an arbitrary vector 0 such that (0, r0) ≠ 0, e.g., 0 = r0
  3. ρ0 = α = ω0 = 1
  4. v0 = p0 = 0
  5. For i = 1, 2, 3, …
    1. ρi = (0, ri−1)
    2. β = (ρi/ρi−1)(α/ωi−1)
    3. pi = ri−1 + β(pi−1ωi−1vi−1)
    4. vi = Api
    5. α = ρi/(0, vi)
    6. s = ri−1αvi
    7. t = As
    8. ωi = (t, s)/(t, t)
    9. xi = xi−1 + αpi + ωis
    10. If xi is accurate enough then quit
    11. ri = sωit

As shown above, there are two steps of 4 and 7 involved with matrices of size n^2 where matrices can be divided into smaller ones and then computed separately in parallel processes.

Matrix Class

In order to perform clear and easy-to-understand matrix calculations, it’s necessary to develop a matrix class that complies with algorithms and calculations. Following lists some of the properties, methods and operators of the developed matrix class.

Property Description
n (Integer) Returns number of i elements
m (Integer) Returns number of j elements
Values (Double(,)) (Default property) gets or sets values of element at i and j

 

Method Description
New () Overloads: 1.void, 2. gets size of matrix, 3. returns identity matrix 4. gets values.
T() Returns transposed of calling matrix
Split() Splits current matrix into matrices of same n and returns an array of them
Join() Joins matrices of same n and returns a matrix
CopyTo() Copies elements in current matrix onto another matrix

 

Operator Description
-/+ Subtracts/adds matrices of appropriate size
* Multiplies matrices of appropriate size
/ Divides element at (0,0) of one matrix by element of the same at another matrix and returns a matrix of size 1*1 of the result.

Solver Class

The Solver Class contains methods and event for performing the BiConGradStab calculations. The SolverThread is executed in a separate class of SolverThreadClass. The Solve() method requires matrices of A, b, initial guess for X, number of parallel processes nParallel, and final iteration Iteration.

VB.NET
Public Sub Solve(A As Matrix, X As Matrix, b As Matrix, Parallel As Integer, Iterations As Integer)
        A.CopyTo(Me.A)
        X.CopyTo(Me.X)
        b.CopyTo(Me.b)

        SolverThread = New SolverThreadClass
        AddHandler SolverThread.Solved, AddressOf _Solved
        Dim T As New Threading.Thread(New Threading.ParameterizedThreadStart_
                                     (AddressOf SolverThread.SolverThread))
        T.Start(New Object() {_A, _X, _b, Parallel, Iterations})
    End Sub 

In Solve() method of the SolverThreadClass, the matrices of A and b are split into nParallel number of smaller matrices using Split() method.

VB.NET
Dim A() As Matrix = rawA.Split(nParallel)
Dim b() As Matrix = rawB.Split(nParallel) 

In the main loop as shown below, steps 4 and 7 of the algorithm are being executed in Parallel blocks.

VB.NET
Do While nIteration < Iterations

           NewRho = r_tilde * r
           beta = (NewRho / Rho) * (Alpha / Omega)
           P = r + beta * (P - Omega * V)

           Parallel.For(0, nParallel, Sub(i As Integer)
                                     V_Split(i) = A(i) * P
                                 End Sub)
           V.Join(V_Split)

           Alpha = NewRho / (r_tilde * V)
           s = r - Alpha * V

           Parallel.For(0, nParallel, Sub(i As Integer)
                                     t_Split(i) = A(i) * s
                                 End Sub)
           t.Join(t_Split)

           Omega = (t.T * s) / (t.T * t)
           X += Alpha * P + Omega * s
           r = s - Omega * t
           NewRho.CopyTo(Rho)

           nIteration += 1

Loop

Using the Code

In order to use this solver in your application, you need to declare it as below so that you would be able to catch the Solved event once it's fired.

VB.NET
Friend WithEvents mySolver As Solver

And Solved event handler can be written as below:

VB.NET
Sub Solved(X As Matrix) Handles mySolver.Solved
Stop
'Any task with X here.
End Sub 

Now in the calling procedure, the solver class is instantiated and called for matrices of system of linear equations. A simple example is given:

VB.NET
mySolver = New Solver

Dim A As New Matrix(3, 3)
Dim x As New Matrix(1, 3)
Dim b As New Matrix(1, 3)

A(0, 0) = 0.1
A(1, 1) = 0.4
A(2, 2) = 0.2

A(1, 0) = 0.45
A(0, 1) = 0.67
A(0, 2) = 0.98

b(0, 0) = 1
b(0, 1) = 1.47
b(0, 2) = 1.58

'Guesses for X
x(0, 0) = 4
x(0, 1) = 2
x(0, 2) = 1

mySolver.Solve(A, x, b, 1, 5) 'Number of Parallel=1 & Iterations = 5

Results

CPU: 2.8GHz and | RAM: 2GB | Precision: Double

Matrix Size: 1000*1000

Image 1

Matrix Size: 2000*2000

Image 2

Matrix Size: 4000*4000

Image 3

Matrix Size: 6000*6000

Image 4

Discussion

The average CPU Time graph is a good indicator of the overall performance of Parallel Class for each matrix. As shown in the graph, the CPU time decreases gradually as the size of matrix increases relatively. For matrix of size 6000, it can be interpreted as a memory access issue as matrix of size 6000 would take two times more memory than that of 4000. In addition, the graph of best CPU Times suggests that the performance of Parallel Class for BiConGradStab gets improved softly by increasing the size of the matrix.

Image 5

Conclusions

  1. The Parallel class improves the performance of BiConGradStab by 41 to 65% on multi-runs and -35% to 75% on single-runs of CPU time on a dual core 2.8GHz with 2GB of RAM having Windows 8.1 installed and continuous condition. This may be relatively different on other systems of different hardware and software capabilities.
  2. With high level of certainty, one would try using Parallel class for matrices of size 1000 and more and expect significant improvement in overall performance.
  3. There’s no exact estimation of improvement in overall or local performance because it’s being affected by several factors. But as for higher number of parallel processes, we’ve got least fluctuation and Parallel gives more reliable result.
  4. Best results achieved at maximum parallel processes where Iterations on Parallel class are comparable to size of the matrix, e.g., 1000 Parallel processes for a matrix of 3000 on each side.
  5. For smaller matrices, Parallel class is unstable but still effective.

Recommendations

  1. For more serious work, it'd be better to add tolerance and/or mse checkers to the iterative part of the code.
  2. Using pre-conditioners, one would achieve better convergence speed for BiConGradStab method. Nonetheless, this code does not aim at evaluating the accuracy or convergence speed of this method.
  3. A memory and CPU check procedure can be developed so that user would get informed about the status of memory and CPU before and when the iterations are in progress.
  4. At many scenarios, users may need to perform the algorithm several times for simulation purposes. For such cases, that would be great if a survey method determines the best run structure prior to the simulation job.
  5. The whole work could be simply accomplished through two separated loops of matrix operations without having other parts of BiConGradStab algorithm involved, this work aims at showing the practical aspect of Parallel Class. One would try similar code for other iterative solutions wherever Parallel computation is possible.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
United Kingdom United Kingdom
I'm a Full-stack Software Developer with over a decade of experience at industrial and research projects having my main focus on Microsoft .Net stack.

Comments and Discussions

 
Questionnice job Pin
Majid Shahabfar12-May-14 3:40
Majid Shahabfar12-May-14 3:40 
AnswerRe: nice job Pin
Taylor Kobani12-May-14 5:05
Taylor Kobani12-May-14 5:05 
Hi, thanks. Frankly not. I had to develop a solver for sparse matrix.
A.Emamjomeh

GeneralPretty interesting writing. Pin
Md Nazmoon Noor10-May-14 15:12
Md Nazmoon Noor10-May-14 15:12 
GeneralRe: Pretty interesting writing. Pin
Taylor Kobani10-May-14 22:51
Taylor Kobani10-May-14 22:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.