Esempio n. 1
0
        public static NodeGrid UpdateP3(this NodeGrid nodeGrid, float step, float noiseLevel)
        {
            var jobs        = 4;
            var localOrders = ColUtils.SubSeqs(jobs, nodeGrid.Strides.Count() / jobs)
                              .Select(t => t.ToList())
                              .ToList();

            Task <List <P1V <int, float> > > t0 = Task.Run(() =>
                                                           nodeGrid.UpdateSeveral(localOrders[0], step, noiseLevel).ToList());

            Task <List <P1V <int, float> > > t1 = Task.Run(() =>
                                                           nodeGrid.UpdateSeveral(localOrders[1], step, noiseLevel).ToList());

            Task <List <P1V <int, float> > > t2 = Task.Run(() =>
                                                           nodeGrid.UpdateSeveral(localOrders[2], step, noiseLevel).ToList());

            Task <List <P1V <int, float> > > t3 = Task.Run(() =>
                                                           nodeGrid.UpdateSeveral(localOrders[3], step, noiseLevel).ToList());

            Task.WaitAll(t0, t1, t2, t3);

            var results = new List <P1V <int, float> >();

            results.AddRange(t0.Result);
            results.AddRange(t1.Result);
            results.AddRange(t2.Result);
            results.AddRange(t3.Result);

            return(nodeGrid.MakeNextGen(results));
        }
Esempio n. 2
0
        public static NodeGrid Update(this NodeGrid nodeGrid, float step, float noiseLevel)
        {
            var res = Enumerable.Range(0, nodeGrid.Strides.Count())
                      .Select(i => nodeGrid.Update(i, noiseLevel, step));

            return(new NodeGrid(nodeGrid.Strides, res, nodeGrid.Generation + 1, nodeGrid.NextSeed));
        }
Esempio n. 3
0
        public static async Task <NodeGrid> UpdateP2(this NodeGrid nodeGrid, float step, float noiseLevel)
        {
            var jobs        = 4;
            var localOrders = ColUtils.SubSeqs(jobs, nodeGrid.Strides.Count() / jobs)
                              .Select(t => t.ToList())
                              .ToList();
            var trackedTasks = new List <Task <List <P1V <int, float> > > >();

            for (var i = 0; i < jobs; i++)
            {
                var i1 = i;
                var ng = nodeGrid.Copy();
                trackedTasks.Add(
                    Task.Run(
                        () => ng.UpdateSeveral(localOrders[i1], step, noiseLevel).ToList())
                    );
            }

            await Task.WhenAll(trackedTasks);

            var results = new List <P1V <int, float> >();

            foreach (var tt in trackedTasks)
            {
                results.AddRange(tt.Result);
            }

            return(nodeGrid.MakeNextGen(results));
        }
Esempio n. 4
0
 public static IEnumerable <P2V <int, float> > DataToP2Vs(this NodeGrid nodeGrid)
 {
     return(Enumerable.Range(0, nodeGrid.Strides.Count())
            .Select(i =>
     {
         var coords = GridUtil.CoordsForGridIndex(nodeGrid.Strides.X, i);
         return new P2V <int, float>(coords.X, coords.Y, nodeGrid.Values[i]);
     }));
 }
Esempio n. 5
0
        public static P1V <int, float> Update(this NodeGrid nodeGrid, int index, float step, float noiseLevel)
        {
            var curValue = nodeGrid.Values[index];
            var deltaL   = NNfunc.ModUFDelta(curValue, nodeGrid.Values[nodeGrid.Left[index]]);
            var deltaR   = NNfunc.ModUFDelta(curValue, nodeGrid.Values[nodeGrid.Right[index]]);
            var deltaT   = NNfunc.ModUFDelta(curValue, nodeGrid.Values[nodeGrid.Top[index]]);
            var deltaB   = NNfunc.ModUFDelta(curValue, nodeGrid.Values[nodeGrid.Bottom[index]]);

            var ptb = NumUt.ModUF32(
                curValue +
                noiseLevel * nodeGrid.Noise[index] +
                step * (
                    deltaL +
                    deltaR +
                    deltaT +
                    deltaB
                    )
                );

            return(new P1V <int, float>(index, ptb));
        }
Esempio n. 6
0
        public static NodeGrid UpdateP(this NodeGrid nodeGrid, float step, float noiseLevel)
        {
            var myLock      = new object();
            var jobs        = 4;
            var localOrders = ColUtils.SubSeqs(jobs, nodeGrid.Strides.Count() / jobs)
                              .Select(t => t.ToList())
                              .ToList();
            var results = new List <P1V <int, float> >();

            Parallel.ForEach(
                localOrders,
                () => new LocalData(nodeGrid),
                (indexes, loopstate, loco) =>
            {
                //Console.WriteLine("{0}:{1}", Thread.CurrentThread.ManagedThreadId, url);
                //return ng.Update(index, step, noiseLevel);
                var retVal = new LocalData(nodeGrid, nodeGrid.UpdateSeveral(indexes, step, noiseLevel)
                                           .ToList());
                return(retVal);
            },
                (localRes) =>
            {
                lock (myLock)
                {
                    var res = localRes.Results;
                    results.AddRange(res);
                }
            });

            if (results.Count == nodeGrid.Strides.Count())
            {
                nodeGrid = nodeGrid.MakeNextGen(results);
            }
            else
            {
                //nodeArray = nodeArray.MakeNextGen(results);
            }

            return(nodeGrid);
        }
Esempio n. 7
0
 public static IEnumerable <P1V <int, float> > DataToP1Vs(this NodeGrid nodeGrid)
 {
     return(Enumerable.Range(0, nodeGrid.Strides.Count())
            .Select(i => new P1V <int, float>(i, nodeGrid.Values[i])));
 }
Esempio n. 8
0
 public LocalData(NodeGrid nodeGrid, List <P1V <int, float> > results = null)
 {
     NodeGrid = nodeGrid;
     Results  = results ?? new List <P1V <int, float> >();
 }
Esempio n. 9
0
 public static NodeGrid Copy(this NodeGrid nodeGrid)
 {
     return(new NodeGrid(nodeGrid.Strides, nodeGrid.DataToP1Vs(), nodeGrid.Generation, nodeGrid.Seed));
 }
Esempio n. 10
0
 public static NodeGrid MakeNextGen(this NodeGrid nodeGrid, IEnumerable <P1V <int, float> > newVals)
 {
     return(new NodeGrid(nodeGrid.Strides, newVals, nodeGrid.Generation + 1, nodeGrid.NextSeed));
 }
Esempio n. 11
0
 public static IEnumerable <P1V <int, float> > UpdateSeveral(this NodeGrid nodeGrid, IEnumerable <int> indexes, float step, float noiseLevel)
 {
     return(indexes.Select(dex => nodeGrid.Update(dex, noiseLevel, step)));
 }