Blog Archives
MSNetwork 3: Paralelno i asinhrono programirnje primjeri i prezentacijska datoteka
U ovom postu pobrojani su svi demo primjeri sa kratkim objašnjenjem koje sam na MSNetwrok 3 predavanju demonstrirao. Ovo ujedno i predstavlja moje aktivnosti zadnjih nekoliko godina vezanih oko ove teme.
Tačno prije 5 godina odnosno u aprilu 2008 godine (22. aprila 2008.) napisao sam prvi članak oko paralelnog programiranja, dok je 5 mjeseci ranije te godine izbačena prva CTP verzija ParallelFx biblioteke.
Ovim MSNetwork predavanjem želio sam ujedno i da sve to objedinim i da široj javnosti prenesem iskustva iz ovog područja programiranja. Ovaj blog post sadrži izvorni kod za sve demo primjere koji su planirani za ovo predavanje. Moguće je, (jer blog post pišem ranije) da neki od primjera nije demonstriran zbog vremena, pa ovom prilikom ih objavljujem sviju sa kratkim pojašnjenjem.
Ukupno za ovo predavanje planirano je 9 demo primjera i to:
1. Power point prezentacija predavanja.
2. Demo primjeri sa predavanja
| Primjer manipulacije sa objektom Thread, i kako manipulisati u višenitnom okruženju. | |
| Primjer manipulacije sa Task objektom, kao osnovnim konceptom pralelnog i asinhronog programiranja. | |
| Demo sadrzi 5 različitih primjera korištenja for, foeach, parallelLoopState i primjer koordinacije i razmjene podataka izmedju niti. | |
| PLINQ primjer koristenja paraleliziranih LINQ upita. | |
| Primjer korištenja Partisionera, kojim dijelimo poslove na više taskova. | |
| Primjer koji demonstrira Race Condition fenomen kada dvije niti u isto vrijeme pokusavaju da promjene vrijednost varijable. | |
| Realni primjer primjene ParallelFx u rjesavanju sistema linearnih jednačina sa 1000 nepoznatih. | |
| Primjer asinhronog programiranja na strani klijenta. Kako stari sekvencijalni kod pretvoriti u asinhroni. | |
| Primjer asinhronog programiranja na strani servera. Korištenje asinhronog programiranja u optimizaciji ASP.NET aplikacija i mogućnosti povećavanja performansi i odziva aplikacija. |
Function optimization with Genetic Algorithm by using GPdotNET
Content
1. Introduction
2. Analytic function optimization module in GPdotNET
3. Examples of function optimizations
4. C# Implementation behind GPdotNET Optimization module
Introduction

GPdotNET is artificial intelligence tool for applying Genetic Programming and Genetic Algorithm in modeling and optimization of various engineering problems. It is .NET (Mono) application written in C# programming language which can run on both Windows and Linux based OS, or any OS which can run Mono framework. On the other hand GPdotNET is very easy to use. Even if you have no deep knowledge of GP and GA, you can apply those methods in finding solution. The project can be used in modeling any kind of engineering process, which can be described with discrete data. It is also be used in education during teaching students about evolutionary methods, mainly GP and GA. GPdotNET is open source project hosted at http://gpdotnet.codeplex.com
With releasing of GPdotNET v2 it is also possible to find optimum for any analytic function regardless of independent variables. For example you can find optimum value for an analytically defined function with 2, 5, 10 or 100 independent variables. By using classic methods, function optimization of 3 or more independent variables is very difficult and sometimes impossible. It is also very hard to find optimum value for functions which are relatively complex regardless of number of independent variables.
Because GPdotNET is based on Genetic Algorithm we can find approximated optimum value of any function regardless of the limitation of number of independent variables, or complex definition. This blog post is going to give you a detailed and full description how to use GPdotNET to optimize function. Blog post will also cover C# implementation behind optimization proce by showing representation of Chromosome with real number, as well as Fitness calculation which is based on Genetic Programming tree expression. In this blog post it will also be presented several real world problem of optimization which will be solved with GPdotNET.
Analitic Function Optimization Module in GPdotNET
When GPdotNET is opened you can choose several predefined and calucalted models from various domain problems, as weel as creating New model among other options. By choosing New model new dialog box appears like picture below.
By choosing Optimization of Analytic Function (see pic above) and pressing OK button, GPdotNET prepares model for optimization and opens 3 tab pages:
- Analytic function,
- Settings and
- Optimize Model.
Analytic function
By using “Analytic function” tab you can define expression of a function. More information about how to define mathematics expression of analytic function can be found on this blog post.
By using “Analytic definition tool” at the bottom of the page, it is possible to define analytic expression. Expression tree builder generates function in Genetic Programming Expression tree, because GPdotNET fully implements both methods. Sharing features of Genetic programming in Optimization based Genetic Algorithm is unique and it is implement only in GPdotNET.
When the process of defining function is finished, press Finish button in order to proceed with further actions. Finish button action apply all changes with Optimization Model Tab. So if you have made some changed in function definition, by pressing Finish button changes will be send to optimization tab.
Defining expression of function is relatively simple, but it is still not natural way for defining function, and will be changed in the future. For example on picture 2, you can see Expression tree which represent:
.
Setting GA parameters
The second step in optimization is setting Genetic Algorithm parameter which will be used in optimization process. Open the Setting tab and set the main GA parameters, see pic. 3.
To successfully applied GA in the Optimization, it is necessary to define:
- population size,
- probabilities of genetic operators and
- selection methods.
These parameters are general for all GA and GP models. More information about parameters you can find at
http://bhrnjica.net/gpdotnet
.
Optimize model (running optimization)
When GA parameters are defined, we can start with optimization by selecting Optimization model tab. Before run, we have to define constrains for each independent variables. This is only limitation we have to define i order to start optimization. The picture below shows how to define constrains in 3 steps:
- select row by left mouse click,
- enter min and max value in text boxes
- Press update button.
Perform these 3 actions for each independent variable defined in the function.
When the process of defining constrains is finished, it is time to run the calculation by pressing Optimize button, from the main toolbar(green button). During optimization process GPdotNET is presenting nice animation of fitness values, as well as showing current best optimal value. The picture above shows the result of optimization process with GPdotNET. It can be seen that the optimal value for this sample is .
Examples of function optimization
In this topic we are going to calculate optimal value for some functions by using GPdotNET. Zo be prove that the optimal value is correct or very close to correct value we will use Wolfram Alpha or other method.
Function: x sin(4x)+1.1 x sin(2y)
GP Expression tree looks like the following picture (left size):
Optimal value is found (right above picture) for 0.054 min, at 363 generation of total of 500 generation. Optimal value is f(8.66,9.03)=-18.59.
Here is Wolfram Alpha calculation of the same function.
http://www.wolframalpha.com/input/?i=min+x*sin%284*x%29%2B+1.1+*y*+sin%282+*y%29%2C+0%3Cx%3C10%2C0%3Cy%3C10
Function: (x^2+x)cos(x), -10≤x≤10
GP expression tree looks like the following picture (left size):
Optimal value is found for 0.125 min, at 10 generation of total of 500 generation. Optimal value is F(9.62)=-100.22.
Here is Wolfram Alpha calculation of the same function.
http://www.wolframalpha.com/input/?i=minimum+%28x%5E2%2Bx%29*cos%28x%29+over+%5B-10%2C10%5D
Easom’s function fEaso(x1,x2)=-cos(x1)•cos(x2)•exp(-((x1-pi)^2+(x2-pi)^2)), -100<=x(i)<=100, i=1:2.
GP expression tree looks like the following picture (left size):
Optimal value is found for 0.061 min, at 477 generation of total of 500 generation. Optimal value is F(9.62)=-1, for x=y=3.14.
Function can be seen at this MatLab link.
C# Implementation behind GPdotNET Optimization module
GPdotNET Optimization module is just a part which is incorporated in to GPdotNET Engine. Specific implementation for this module is Chromosome implementation, as well as Fitness function. Chromosome implementation is based on floating point value instead of classic binary representation. Such a Chromosome contains array of floating point values and each element array represent function independent variable. If the function contains two independent variables (x,y) chromosome implementation will contains array with two floating points. Constrains of chromosome values represent constrains we defined during settings of the optimization process. The following source code listing shows implementation of GANumChrosomome class in GPdotNET:
public class GANumChromosome: IChromosome
{
private double[] val = null;
private float fitness = float.MinValue;
//... rest of implementation
}
When the chromosome is generated array elements get values randomly generated between min and max value defined by function definition. Here is a source code of Generate method.
///
/// Generate values for each represented variable
///
public void Generate(int param = 0)
{
if(val==null)
val = new double[functionSet.GetNumVariables()];
else if (val.Length != functionSet.GetNumVariables())
val = new double[functionSet.GetNumVariables()];
for (int i = 0; i < functionSet.GetNumVariables(); i++)
val[i] = Globals.radn.NextDouble(functionSet.GetTerminalMinValue(i), functionSet.GetTerminalMaxValue(i));
}
Mutation is accomplish when randomly chosen array element randomly change itc value. Here is a listing:
///
/// Select array element randomly and randomly change itc value
///
public void Mutate()
{
//randomly select array element
int crossoverPoint = Globals.radn.Next(functionSet.GetNumVariables());
//randomly generate value for the selected element
val[crossoverPoint] = Globals.radn.NextDouble(functionSet.GetTerminalMinValue(crossoverPoint), functionSet.GetTerminalMaxValue(crossoverPoint));
}
Crossover is little bit complicated. It is implemented based on Book Practical Genetic Algoritms see pages 56,57,48,59. Here is an implementation:
///
/// Generate number between 0-1.
/// For each element array of two chromosomes exchange value based on random number.
///
///
public void Crossover(IChromosome ch2)
{
GANumChromosome p = (GANumChromosome)ch2;
int crossoverPoint = Globals.radn.Next(functionSet.GetNumVariables());
double beta;
for (int i = crossoverPoint; i < functionSet.GetNumVariables(); i++)
{
beta = Globals.radn.NextDouble();
val[i] = val[i] - beta * (val[i] - p.val[i]);
p.val[i] = p.val[i] + beta * (val[i] - p.val[i]);
}
}
Fitness function for Optimization is straightforward, it evaluates each chromosome against tree expression. For minimum the better chromosome is lower value. For maximum better chromosome is the chromosome with higher fitness value. Here is a implementation of Optimizatio Fitness function:
///
/// Evaluates function agains terminals
///
///
///
///
public float Evaluate(IChromosome chromosome, IFunctionSet functionSet)
{
GANumChromosome ch = chromosome as GANumChromosome;
if (ch == null)
return 0;
else
{
//prepare terminals
var term = Globals.gpterminals.SingleTrainingData;
for (int i = 0; i < ch.val.Length; i++)
term[i] = ch.val[i];
var y = functionSet.Evaluate(_funToOptimize, -1);
if (double.IsNaN(y) || double.IsInfinity(y))
y = float.NaN;
//Save output in to output variable
term[term.Length - 1] = y;
if (IsMinimize)
y *= -1;
return (float)y;
}
}
Summary
We have seen that Function optimization module within GPdotNET is powerful optimization tool. It can find pretty close solution for very complex functions regardless of number of independent variables. Optimization module use Genetic Algorithm method with floating point value chromosome representation described in several books about GA. It is fast, simple and can be used in education as well as in solving real problems. More info about GPdotNET can be found at http://bhrnjica.net/gpdotnet.
Implementation Traveling Salesman Problem (TSP) with GPdotNET
After only 2 months of releasing GPdotNET v2.0 the new update is coming. Architecture of GPdotNET v2 allows implementation of wide range of GA & GP based problems. For this first update, it is implementation of Traveling Salesman Problem (TSP). Short description of this problem is to find the shortest path by visiting all cities only once. More info can be found here. This problem is implemented just for several hours, because all important phases are already implemented.
The main implementations for this problem were:
- TSPChromosome – class for chromosome representation
- TSP Fitness – implementation
- Other parts like selection, simulation of the result are mostly implemented.
TSPChromosome class implementation
Instead of binary value, TSP chromosome must be array of integers by representing path around cities. The main problem with this chromosome type is genetic operations, because you cannot implement it easily.
For example standard Crossover in GA takes random point and split parents in two parts, see picture below. One part goes to first offspring, the second one goes to second offspring. The same action is performed for the second parent. The picture below shows standard crossover in GA.
Unfortunately this operation cannot be applied to TSP, because every city can be visited only once. But how can we perform crossover at all? There are several methods can be found on internet. The method applied in GPdotNET is the following.
Choose different random points for Parent 1 and Parent 2.
Offspring 1 is created based on the left part of Parent 1, and sub permutation of the rest of cities.
Offspring 2 is created based on the right part of Parent 2 and sub permutation of rest of the cities.
Picture below show crossover used in GPdotNET.
The problem with this crossover is that offsprings are not created based on genetic material from both parents.
Implementation of TSPChromosome crossover method is presented below:
public void Crossover(IChromosome ch2)
{
var ch22 = ch2 as GATSPChromosome;
if (ch22 == null)
throw new Exception("Chromosome cannot be null!");
Order(true);
ch22.Order(false);
int randInd1 = Globals.radn.Next(length);
int randInd2 = Globals.radn.Next(length);
for (int i = 0; i < randInd1; i++)
{
int rand1 = Globals.radn.Next(randInd1);
int rand2 = Globals.radn.Next(randInd1);
var temp = value[randInd1];
value[randInd1] = value[randInd2];
value[randInd2] = temp;
}
for (int i = randInd2; i < length; i++)
{
int rand1 = Globals.radn.Next(randInd2,length);
int rand2 = Globals.radn.Next(randInd2,length);
var temp = ch22.Value[randInd1];
ch22.Value[randInd1] = ch22.Value[randInd2];
ch22.Value[randInd2] = temp;
}
}
Mutation operation for this chromosome can be implemented so that we randomly choose two cities and swap their positions in the path. Implementation for this operation is presented in code below:
public void Mutate() { int randInd1 = Globals.radn.Next(length); int randInd2 = Globals.radn.Next(length); if(randInd1>randInd2)
{
int temp= randInd2;
randInd2=randInd1;
randInd1=temp;
}
int j = 0;
for (int i = randInd1; i <= randInd2; i++,j++)
{
if (i > (randInd2 - j))
break;
var temp1 = value[i];
var temp2 = value[randInd2-j];
value[i] = temp2;
value[randInd2 - j] = temp1;
}
}
Fitness of TSP
Fitness function is relatively simple. It calculates total path based on Chromosome array of cities. Fitness will be better if the path is shorter.
public float Evaluate(IChromosome chromosome, IFunctionSet functionSet)
{
var ch = chromosome as GATSPChromosome;
if (ch == null)
return 0;
else
{
double y = 0, fitness;
double[] p1 = null;
double[] p2 = null;
int rCount = ch.Length;
for (int i = 0; i < rCount; i++)
{
p1 = Globals.GetTerminalRow(ch.Value[i]);
if (i + 1 == rCount)
p2 = Globals.GetTerminalRow(ch.Value[0]);
else
p2 = Globals.GetTerminalRow(ch.Value[i+1]);
// calculate distance betwee two points and make the sum
y += Math.Sqrt((p2[0] - p1[0]) * (p2[0] - p1[0]) + (p2[1] - p1[1]) * (p2[1] - p1[1]));
// check for correct numeric value
if (double.IsNaN(y) || double.IsInfinity(y))
return float.NaN;
}
//with this value we always search for maximum value of fitness
fitness = ((1.0 / (1.0 + y)) * 1000.0);
return (float)fitness;
}
}
Loading City Map
TSP Solver needs City data of points in (X;Y) format. It must be loaded by CSV file format, the same as GPdotNET uses for loding data for modelling and optimization. The following data represent corect format:
CityMap data format:
How to run TSP Solver on GPdotNET
Running TSP solver with GPdotNET is relatively easy. The procedure follows global convention for creating new model or solver.
1. Choose New.. from mainpanel.
2. Choose Traveling Salesman Problem, and click OK button.
3. Open Load Data tab, (if it not opened), press Load Cities Map button, choose CityMap.CSV, and press OK. Data is presented on picture below.
4. Sett GA parameters on Setting Tab panel:
5. Open Simulation Tab panel. You can see graphically representation of loaded map, and set of simulation parameters.
6. Press Run ribon button, and Solver will start. During simulation you can see that the path length is becoming shorter and shorter
7. As final result, Solver find the path which is the shortest or very close to shorter one.
8. Exit and Save your solution.
We have seen how easy is to implement such a problem, base on existing foundation of the GPdotNET. More problems based on GA/GP is cumming in the GPdotNET. Application is posted on codeplex.com, as GPdotNET v2.1 beta 1.
SignalR Online Counter Sample
SignalR is a web technology for building real time ASP.NET web applications. SignalR is an open source project which simplifies the complicated tasks of creating bidirectional communication between clients and server. SignalR is founded on top of WebSockets, as well as other similar technologies.
As you probably know WebSockets introduced a new way to communicate between server and clients, and it is specified by the HTML5 API specification. When it is available SignalR will use this technology, otherwise it will use what is supported by your system. SignalR also provides a high-level API for server communication to client RPC (call JavaScript functions in clients’ browsers from server-side .NET code) in ASP.NET applications, as well as adds useful hooks for connection management, e.g., connect/disconnect events, grouping connections, authorization. More information about SignalR can be found on the official web site for SignalR.
For this post I have implemented a very simple SignalR Web Application which counts how many users are online, so it is called Online Counter. Online Counters are a very popular component for the web.
So let’s start with the implementation.
- Open Visual Studio 2012, and create new Empty Web Application called OnlineCounter.
The first thing we will do is adding SignalR reference for the clients (JavaScript files) and the Server (.NET Components).
2. So open NuGet Manager console and input the following command: Install-Package Microsoft.AspNet.SignalR –Pre
After we added SignalR references, we are implementing Server side of the SignalR HitCounter Web Application.
3. Add a new class named HitCounter.
The HitCounter class must be derived from the Hub. More info about Hub and other SignalR components you can find on the official site.
The implementation for the HitCounter class is shown below:
public class HitCounter : Hub
{
private static int clientCounter = 0;
public void Send()
{
string message = "";
// Call the recalculateOnlineUsers method to update clients
if(clientCounter<2)
message = string.Format("Currently {0} user is online.",clientCounter);
else
message = string.Format("Currently {0} users are online.", clientCounter);
Clients.All.recalculateOnlineUsers(message);
}
///
/// register online user
///
///
public override System.Threading.Tasks.Task OnConnected()
{
clientCounter++;
return base.OnConnected();
}
///
/// unregister disconected user
///
///
public override System.Threading.Tasks.Task OnDisconnected()
{
clientCounter--;
return base.OnDisconnected();
}
}
As you can see from the source code, we have override two virtual methods when user is reach the page, and also when the user live the page. The Send method is responsible to send message to all available clients.
We need also to implement Global Application Class to register this hub.
4. Add Global Application Class in to your project, and register MapHubs, as picture shows below.
The following code implementation shows how to register Hub in Global App Class.
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
// Register the default hubs route: ~/signalr/hubs
RouteTable.Routes.MapHubs();
}
//rest of the implememtation.....
After we implemented Services side of SignalR, we need to implement client side.
5. Add new html web page in to project.
6. Include standard set of JavaScript files necessary for SignalR client to run.
<!--Script references. --> <!--Reference the jQuery library. --> <script type="text/javascript" src="Scripts/jquery-1.6.4.min.js"></script><!--Reference the SignalR library. --><script type="text/javascript" src="Scripts/jquery.signalR-1.0.0-rc2.js"></script> <!--Reference the autogenerated SignalR hub script. --> <script type="text/javascript" src="/signalr/hubs"></script>
7. Send Notification to Server that the new User is reached the page.
8. Implemet JavaScript code to receive recalculateOnlineUser event sent from server.
$(function () {
// Declare a proxy to reference the hub.
var counter = $.connection.hitCounter;
// register online user at the very begining of the page
$.connection.hub.start().done(function () {
// Call the Send method on the hub.
counter.server.send();
});
// Create a function that the hub can call to recalculate online users.
counter.client.recalculateOnlineUsers = function (message) {
// Add the message to the page.
$('paragraph').text(message);
};
});
9. Compile and run the code. Open two Browser Windows. You can see that SignalR has counted two online users.
Source code for this blog post demo you can find below.


































