示例#1
0
		private void StartComputation(object sender, DoWorkEventArgs args)
		{
			BackgroundWorker currentWorker = sender as BackgroundWorker;

			mFinishedThreadCount = 0;
			if (mMutex == null) {
				mMutex = new Mutex (false);
			}

			int coresToUse = System.Environment.ProcessorCount < 2 ? 1 : System.Environment.ProcessorCount - 1;
			int cores = Math.Min (coresToUse, mData.GetUpperBound (1) + 1);
			int slice = (int)(Math.Floor((float)(mData.GetUpperBound (1) + 1) / cores));

			//Console.WriteLine ("Number of parallel threads used: {0}", cores.ToString ());

			for (int i = 0; i < cores - 1; ++i) {
				FractalUtility.ThreadData td = new FractalUtility.ThreadData (slice * i, slice * (i + 1));
				ParameterizedThreadStart ts = new ParameterizedThreadStart (this.ThreadedIterate);
				Thread newthread = new Thread (ts);
				newthread.Start (td);
				if (currentWorker.CancellationPending)
					break;
			}

			FractalUtility.ThreadData lasttd = new FractalUtility.ThreadData (slice * (cores - 2), mData.GetUpperBound (1) + 1);
			ThreadedIterate (lasttd);


			while (mFinishedThreadCount < cores && !currentWorker.CancellationPending) {
				Thread.Sleep (1);
			}
		}
示例#2
0
		private void ThreadedIterate(System.Object obj)
		{
			FractalUtility.ThreadData td = (FractalUtility.ThreadData)obj;
			float xStep = (mMaxX - mMinX) / (mData.GetUpperBound (0) + 1);
			float yStep = (mMaxY - mMinY) / (mData.GetUpperBound (1) + 1);
			for (int y = td.start; y < td.end; ++y) {
				for (int x = 0; x <= mData.GetUpperBound (0); ++x) {
					if (mWorker.CancellationPending)
						break;
					FractalComplexNumber complexPoint = new FractalComplexNumber (mMinX + (x * xStep) - mCenter.x, mMinY + (y * yStep) - mCenter.y);
					float iterated = Iterate (complexPoint, new FractalComplexNumber (mInitialPoint));
					float value = 1;
					if (iterated >= 0) {
						value = iterated;
					} 

					mData [x, y] = value;
				}
				if (mWorker.CancellationPending)
					break;
			}
			mMutex.WaitOne ();
			mFinishedThreadCount++;
			mMutex.ReleaseMutex ();
		}