diff --git a/PERFORMANCE.md b/PERFORMANCE.md
index ea9e983..45ee6e9 100644
--- a/PERFORMANCE.md
+++ b/PERFORMANCE.md
@@ -281,3 +281,40 @@ parallel_for, 512 heat array size):
We observe solid performance from our implementation.
(Again, not very scientific test environment, but good enough for
our general direction)
+
+### Commit 3bdaba42 - Move to pure fork-join tasks (remove two level)
+
+We moved away from our two-level scheduler approach towards a
+pure fork-join task model (in order to remove any lock's in the
+code more easily and to make further tests simpler/more focused
+on one specific aspecs.
+These are the measurements made after the change
+(without any performance optimizations done):
+
+FFT Average:
+
+
+
+Heat Diffusion Average:
+
+
+
+Matrix Multiplication Average:
+
+
+
+Unbalanced Tree Search Average:
+
+
+
+
+We note that in heat diffusion, matrix multiplication and unbalanced
+tree search - all three benchmarks with mostly enough work avaliable at
+all time - our implementation performs head on head with intel's
+TBB. Only the FFT benchmark is a major problem four our library.
+We notice a MAJOR drop in performance exactly at the hyperthreading
+mark, indicating problems with limited resources due to the spinning
+threads (threads without any actual work) and the threads actually
+performing work. Most likely there is a resource on the same cache
+line used that hinders the working threads, but we can not really
+figure out which one it is.
diff --git a/media/3bdaba42_fft_average.png b/media/3bdaba42_fft_average.png
new file mode 100644
index 0000000..b558191
Binary files /dev/null and b/media/3bdaba42_fft_average.png differ
diff --git a/media/3bdaba42_heat_average.png b/media/3bdaba42_heat_average.png
new file mode 100644
index 0000000..edb98d2
Binary files /dev/null and b/media/3bdaba42_heat_average.png differ
diff --git a/media/3bdaba42_matrix_average.png b/media/3bdaba42_matrix_average.png
new file mode 100644
index 0000000..9538c36
Binary files /dev/null and b/media/3bdaba42_matrix_average.png differ
diff --git a/media/3bdaba42_unbalanced_average.png b/media/3bdaba42_unbalanced_average.png
new file mode 100644
index 0000000..ee1415b
Binary files /dev/null and b/media/3bdaba42_unbalanced_average.png differ